mirror of
https://github.com/certbot/certbot.git
synced 2026-07-30 16:14:44 +02:00
Added options to set the listen address for standalone mode (#4694)
Fixes #255.
This commit is contained in:
committed by
Brad Warren
parent
c9ff9e3c7a
commit
6f98987c12
@@ -990,10 +990,18 @@ def prepare_and_parse_args(plugins, args, detect_defaults=False): # pylint: dis
|
||||
["testing", "standalone", "apache", "nginx"], "--tls-sni-01-port", type=int,
|
||||
default=flag_default("tls_sni_01_port"),
|
||||
help=config_help("tls_sni_01_port"))
|
||||
helpful.add(
|
||||
["testing", "standalone"], "--tls-sni-01-address",
|
||||
default=flag_default("tls_sni_01_address"),
|
||||
help=config_help("tls_sni_01_address"))
|
||||
helpful.add(
|
||||
["testing", "standalone", "manual"], "--http-01-port", type=int,
|
||||
dest="http01_port",
|
||||
default=flag_default("http01_port"), help=config_help("http01_port"))
|
||||
helpful.add(
|
||||
["testing", "standalone"], "--http-01-address",
|
||||
dest="http01_address",
|
||||
default=flag_default("http01_address"), help=config_help("http01_address"))
|
||||
helpful.add(
|
||||
"testing", "--break-my-certs", action="store_true",
|
||||
help="Be willing to replace or renew valid certificates with invalid "
|
||||
|
||||
Reference in New Issue
Block a user