Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoona Hoikkala <joona@kuori.org>2015-12-14 10:27:16 +0300
committerJoona Hoikkala <joona@kuori.org>2015-12-14 10:27:16 +0300
commit77c67f1fa9ab7a6e3fd8519b252f6abb9d54e89c (patch)
tree845ef695cb22cb4f6b6d80e82c5a183423926c10 /letsencrypt-apache
parent2b36a2f6c2641526a466f4ee8be6550fb5cc64be (diff)
Gentoo constants, still missing gentoo fingerprint though
Diffstat (limited to 'letsencrypt-apache')
-rw-r--r--letsencrypt-apache/letsencrypt_apache/constants.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/letsencrypt-apache/letsencrypt_apache/constants.py b/letsencrypt-apache/letsencrypt_apache/constants.py
index 049ddce4d..989106e39 100644
--- a/letsencrypt-apache/letsencrypt_apache/constants.py
+++ b/letsencrypt-apache/letsencrypt_apache/constants.py
@@ -25,6 +25,17 @@ CLI_DEFAULTS_CENTOS = dict(
handle_sites=False,
challenge_location="/etc/httpd/conf.d"
)
+CLI_DEFAULTS_GENTOO = dict(
+ server_root="/etc/apache2",
+ vhost_root="/etc/apache2/vhosts.d",
+ ctl="apache2ctl",
+ enmod=None,
+ dismod=None,
+ le_vhost_ext="-le-ssl.conf",
+ handle_mods=False,
+ handle_sites=False,
+ challenge_location="/etc/apache2/vhosts.d"
+)
CLI_DEFAULTS = {
"debian": CLI_DEFAULTS_DEBIAN,
"ubuntu": CLI_DEFAULTS_DEBIAN,