summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/tls_automation_policies_1.txt
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/tls_automation_policies_1.txt')
-rw-r--r--caddytest/integration/caddyfile_adapt/tls_automation_policies_1.txt86
1 files changed, 86 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/tls_automation_policies_1.txt b/caddytest/integration/caddyfile_adapt/tls_automation_policies_1.txt
new file mode 100644
index 0000000..c3fd489
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/tls_automation_policies_1.txt
@@ -0,0 +1,86 @@
+{
+ local_certs
+}
+
+*.tld, *.*.tld {
+ tls {
+ on_demand
+ }
+}
+
+foo.tld, www.foo.tld {
+}
+----------
+{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":443"
+ ],
+ "routes": [
+ {
+ "match": [
+ {
+ "host": [
+ "foo.tld",
+ "www.foo.tld"
+ ]
+ }
+ ],
+ "terminal": true
+ },
+ {
+ "match": [
+ {
+ "host": [
+ "*.tld",
+ "*.*.tld"
+ ]
+ }
+ ],
+ "terminal": true
+ }
+ ]
+ }
+ }
+ },
+ "tls": {
+ "automation": {
+ "policies": [
+ {
+ "subjects": [
+ "foo.tld",
+ "www.foo.tld"
+ ],
+ "issuers": [
+ {
+ "module": "internal"
+ }
+ ]
+ },
+ {
+ "subjects": [
+ "*.*.tld",
+ "*.tld"
+ ],
+ "issuers": [
+ {
+ "module": "internal"
+ }
+ ],
+ "on_demand": true
+ },
+ {
+ "issuers": [
+ {
+ "module": "internal"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+} \ No newline at end of file