mirror of
https://github.com/certbot/certbot.git
synced 2026-03-25 03:44:17 -04:00
16 lines
383 B
Python
16 lines
383 B
Python
"""nginx plugin constants."""
|
|
import pkg_resources
|
|
|
|
|
|
CLI_DEFAULTS = dict(
|
|
server_root="/etc/nginx",
|
|
mod_ssl_conf="/etc/letsencrypt/options-ssl-nginx.conf",
|
|
ctl="nginx",
|
|
)
|
|
"""CLI defaults."""
|
|
|
|
|
|
MOD_SSL_CONF = pkg_resources.resource_filename(
|
|
"letsencrypt_nginx", "options-ssl.conf")
|
|
"""Path to the Nginx mod_ssl config file found in the Let's Encrypt
|
|
distribution."""
|