summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/bind_ipv6.txt
blob: d9d9bec6b25a36176c22a08f43d44c35e9583902 (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
example.com {
	bind tcp6/[::]
}
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						"tcp6/[::]:443"
					],
					"routes": [
						{
							"match": [
								{
									"host": [
										"example.com"
									]
								}
							],
							"terminal": true
						}
					]
				}
			}
		}
	}
}