mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Merge remote-tracking branch 'github/master' into le_util_test
This commit is contained in:
commit
0e6e85cf19
1 changed files with 2 additions and 2 deletions
|
|
@ -52,10 +52,10 @@ INVALID_EXT = ".acme.invalid"
|
|||
CHALLENGE_PREFERENCES = ["dvsni", "recoveryToken"]
|
||||
|
||||
# Mutually Exclusive Challenges - only solve 1
|
||||
EXCLUSIVE_CHALLENGES = [set(["dvsni", "simpleHttps"])]
|
||||
EXCLUSIVE_CHALLENGES = [frozenset(["dvsni", "simpleHttps"])]
|
||||
|
||||
# These are challenges that must be solved by a Configurator object
|
||||
CONFIG_CHALLENGES = {"dvsni", "simpleHttps"}
|
||||
CONFIG_CHALLENGES = frozenset(["dvsni", "simpleHttps"])
|
||||
|
||||
# Rewrite rule arguments used for redirections to https vhost
|
||||
REWRITE_HTTPS_ARGS = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue