mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
Update to new CONFIG style
This commit is contained in:
parent
976560b0e9
commit
9896274478
1 changed files with 2 additions and 2 deletions
|
|
@ -612,7 +612,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
|
|||
|
||||
self.add_dir(vh_p[0], "SSLCertificateFile", "/etc/ssl/certs/ssl-cert-snakeoil.pem")
|
||||
self.add_dir(vh_p[0], "SSLCertificateKeyFile", "/etc/ssl/private/ssl-cert-snakeoil.key")
|
||||
self.add_dir(vh_p[0], "Include", OPTIONS_SSL_CONF)
|
||||
self.add_dir(vh_p[0], "Include", CONFIG.OPTIONS_SSL_CONF)
|
||||
|
||||
# Log actions and create save notes
|
||||
logger.info("Created an SSL vhost at %s" % ssl_fp)
|
||||
|
|
@ -1149,7 +1149,7 @@ SSLStrictSNIVHostCheck on \n \
|
|||
\n \
|
||||
LimitRequestBody 1048576 \n \
|
||||
\n \
|
||||
Include " + OPTIONS_SSL_CONF + " \n \
|
||||
Include " + CONFIG.OPTIONS_SSL_CONF + " \n \
|
||||
SSLCertificateFile " + self.dvsni_get_cert_file(nonce) + " \n \
|
||||
SSLCertificateKeyFile " + key + " \n \
|
||||
\n \
|
||||
|
|
|
|||
Loading…
Reference in a new issue