diff options
author | Matt Holt <mholt@users.noreply.github.com> | 2020-11-16 11:05:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 11:05:55 -0700 |
commit | 13781e67ab1b2553598d0dd1a7153ce3cdbd4879 (patch) | |
tree | 4c53ec6e7ebc051b7d5946a25cd4b276016b698d /caddytest/integration/caddyfile_adapt/tls_automation_policies.txt | |
parent | 7a3d9d81fe5836894b39d0e218193f7cffd732ff (diff) |
caddytls: Support multiple issuers (#3862)
* caddytls: Support multiple issuers
Defaults are Let's Encrypt and ZeroSSL.
There are probably bugs.
* Commit updated integration tests, d'oh
* Update go.mod
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/tls_automation_policies.txt')
-rw-r--r-- | caddytest/integration/caddyfile_adapt/tls_automation_policies.txt | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/caddytest/integration/caddyfile_adapt/tls_automation_policies.txt b/caddytest/integration/caddyfile_adapt/tls_automation_policies.txt index 0a90e4a..c3fd489 100644 --- a/caddytest/integration/caddyfile_adapt/tls_automation_policies.txt +++ b/caddytest/integration/caddyfile_adapt/tls_automation_policies.txt @@ -54,24 +54,30 @@ foo.tld, www.foo.tld { "foo.tld", "www.foo.tld" ], - "issuer": { - "module": "internal" - } + "issuers": [ + { + "module": "internal" + } + ] }, { "subjects": [ "*.*.tld", "*.tld" ], - "issuer": { - "module": "internal" - }, + "issuers": [ + { + "module": "internal" + } + ], "on_demand": true }, { - "issuer": { - "module": "internal" - } + "issuers": [ + { + "module": "internal" + } + ] } ] } |