Added options to set the listen address for standalone mode (#4694)

Fixes #255.
This commit is contained in:
Jeff R. Allen
2017-06-01 09:02:14 -07:00
committed by Brad Warren
parent c9ff9e3c7a
commit 6f98987c12
5 changed files with 25 additions and 6 deletions
+2 -1
View File
@@ -30,7 +30,8 @@ logger = logging.getLogger(__name__)
STR_CONFIG_ITEMS = ["config_dir", "logs_dir", "work_dir", "user_agent",
"server", "account", "authenticator", "installer",
"standalone_supported_challenges", "renew_hook",
"pre_hook", "post_hook"]
"pre_hook", "post_hook", "tls_sni_01_address",
"http01_address"]
INT_CONFIG_ITEMS = ["rsa_key_size", "tls_sni_01_port", "http01_port"]
BOOL_CONFIG_ITEMS = ["must_staple", "allow_subset_of_names"]