summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/enable_tls_for_catch_all_site.txt
blob: b37b40c00a68228246c03f9a2fa781a1a31e9423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
:8443 {
	tls internal {
		on_demand
	}
}
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":8443"
					],
					"tls_connection_policies": [
						{}
					]
				}
			}
		},
		"tls": {
			"automation": {
				"policies": [
					{
						"issuers": [
							{
								"module": "internal"
							}
						],
						"on_demand": true
					}
				]
			}
		}
	}
}