summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/sort_directives_with_any_matcher_first.txt
blob: 6203a89cc50a86e42c96f4b80cf219cdbdff2e29 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
:80

respond 200

@untrusted not remote_ip 10.1.1.0/24
respond @untrusted 401
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":80"
					],
					"routes": [
						{
							"match": [
								{
									"not": [
										{
											"remote_ip": {
												"ranges": [
													"10.1.1.0/24"
												]
											}
										}
									]
								}
							],
							"handle": [
								{
									"handler": "static_response",
									"status_code": 401
								}
							]
						},
						{
							"handle": [
								{
									"handler": "static_response",
									"status_code": 200
								}
							]
						}
					]
				}
			}
		}
	}
}