diff --git a/letsencrypt_apache/configurator.py b/letsencrypt_apache/configurator.py index 965e9cf73..078e61564 100644 --- a/letsencrypt_apache/configurator.py +++ b/letsencrypt_apache/configurator.py @@ -126,6 +126,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator): @property def mod_ssl_conf(self): + """Full absolute path to SSL configuration file.""" return os.path.join(self.config.config_dir, constants.MOD_SSL_CONF_DEST) def prepare(self): diff --git a/letsencrypt_nginx/configurator.py b/letsencrypt_nginx/configurator.py index 521a4facf..87beb3c8f 100644 --- a/letsencrypt_nginx/configurator.py +++ b/letsencrypt_nginx/configurator.py @@ -91,6 +91,7 @@ class NginxConfigurator(common.Plugin): @property def mod_ssl_conf(self): + """Full absolute path to SSL configuration file.""" return os.path.join(self.config.config_dir, constants.MOD_SSL_CONF_DEST) # This is called in determine_authenticator and determine_installer