summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/global_options_admin_with_persist_config_off.txt
blob: 998fe2234bf57663eeb91207a2189138a79aa65c (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
{
	http_port 8080
	persist_config off
	admin {
		origins localhost:2019 [::1]:2019 127.0.0.1:2019 192.168.10.128
	}
}

:80
----------
{
	"admin": {
		"listen": "localhost:2019",
		"origins": [
			"localhost:2019",
			"[::1]:2019",
			"127.0.0.1:2019",
			"192.168.10.128"
		],
		"config": {
			"persist": false
		}
	},
	"apps": {
		"http": {
			"http_port": 8080,
			"servers": {
				"srv0": {
					"listen": [
						":80"
					]
				}
			}
		}
	}
}