-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
httpcaddyfile: Empty tls policy for internal http localhost (#4398)
* test: replicated empty tls automation policy issue * fix: empty tls policy for an http:// endpoint running on a non-standard http port
- Loading branch information
Showing
2 changed files
with
99 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 98 additions & 0 deletions
98
caddytest/integration/caddyfile_adapt/tls_automation_policies_8.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# (this Caddyfile is contrived, but based on issues #4176 and #4198) | ||
|
||
http://example.com { | ||
} | ||
|
||
https://example.com { | ||
tls abc@example.com | ||
} | ||
|
||
http://localhost:8081 { | ||
} | ||
|
||
---------- | ||
{ | ||
"apps": { | ||
"http": { | ||
"servers": { | ||
"srv0": { | ||
"listen": [ | ||
":443" | ||
], | ||
"routes": [ | ||
{ | ||
"match": [ | ||
{ | ||
"host": [ | ||
"example.com" | ||
] | ||
} | ||
], | ||
"terminal": true | ||
} | ||
] | ||
}, | ||
"srv1": { | ||
"listen": [ | ||
":80" | ||
], | ||
"routes": [ | ||
{ | ||
"match": [ | ||
{ | ||
"host": [ | ||
"example.com" | ||
] | ||
} | ||
], | ||
"terminal": true | ||
} | ||
] | ||
}, | ||
"srv2": { | ||
"listen": [ | ||
":8081" | ||
], | ||
"routes": [ | ||
{ | ||
"match": [ | ||
{ | ||
"host": [ | ||
"localhost" | ||
] | ||
} | ||
], | ||
"terminal": true | ||
} | ||
], | ||
"automatic_https": { | ||
"skip": [ | ||
"localhost" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"tls": { | ||
"automation": { | ||
"policies": [ | ||
{ | ||
"subjects": [ | ||
"example.com" | ||
], | ||
"issuers": [ | ||
{ | ||
"email": "abc@example.com", | ||
"module": "acme" | ||
}, | ||
{ | ||
"email": "abc@example.com", | ||
"module": "zerossl" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |