summaryrefslogtreecommitdiff
path: root/caddytest/integration
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2021-04-02 18:47:04 -0400
committerGitHub <noreply@github.com>2021-04-02 16:47:04 -0600
commit1455d6bb690d8c91159a709cc6d1a0dc01ed9153 (patch)
treef1485ec7cf841bc40506db97d4a83758c79b5ffe /caddytest/integration
parent3401f91dbeae80d22c8df9a4a50de521c69c9e00 (diff)
httpcaddyfile: Fix panic in automation policy consolidation (#4104)
* httpcaddyfile: Add reproduce test * httpcaddyfile: Don't allow `i` to go below zero
Diffstat (limited to 'caddytest/integration')
-rw-r--r--caddytest/integration/caddyfile_adapt/tls_automation_policies_4.txt155
1 files changed, 155 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/tls_automation_policies_4.txt b/caddytest/integration/caddyfile_adapt/tls_automation_policies_4.txt
new file mode 100644
index 0000000..502dbd0
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/tls_automation_policies_4.txt
@@ -0,0 +1,155 @@
+{
+ email my.email@example.com
+}
+
+:82 {
+ redir https://example.com{uri}
+}
+
+:83 {
+ redir https://example.com{uri}
+}
+
+:84 {
+ redir https://example.com{uri}
+}
+
+abc.de {
+ redir https://example.com{uri}
+}
+----------
+{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":443"
+ ],
+ "routes": [
+ {
+ "match": [
+ {
+ "host": [
+ "abc.de"
+ ]
+ }
+ ],
+ "handle": [
+ {
+ "handler": "subroute",
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "static_response",
+ "headers": {
+ "Location": [
+ "https://example.com{http.request.uri}"
+ ]
+ },
+ "status_code": 302
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "terminal": true
+ }
+ ]
+ },
+ "srv1": {
+ "listen": [
+ ":82"
+ ],
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "static_response",
+ "headers": {
+ "Location": [
+ "https://example.com{http.request.uri}"
+ ]
+ },
+ "status_code": 302
+ }
+ ]
+ }
+ ]
+ },
+ "srv2": {
+ "listen": [
+ ":83"
+ ],
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "static_response",
+ "headers": {
+ "Location": [
+ "https://example.com{http.request.uri}"
+ ]
+ },
+ "status_code": 302
+ }
+ ]
+ }
+ ]
+ },
+ "srv3": {
+ "listen": [
+ ":84"
+ ],
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "static_response",
+ "headers": {
+ "Location": [
+ "https://example.com{http.request.uri}"
+ ]
+ },
+ "status_code": 302
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "tls": {
+ "automation": {
+ "policies": [
+ {
+ "issuers": [
+ {
+ "email": "my.email@example.com",
+ "module": "acme"
+ },
+ {
+ "email": "my.email@example.com",
+ "module": "zerossl"
+ }
+ ]
+ },
+ {
+ "issuers": [
+ {
+ "email": "my.email@example.com",
+ "module": "acme"
+ },
+ {
+ "email": "my.email@example.com",
+ "module": "zerossl"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+} \ No newline at end of file