summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/reverse_proxy_health_headers.txt
blob: 17adcaa68287b64a182a113ae9ccdf9110a49b9d (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
52
53
54
55
56
57
58
59
:8884

reverse_proxy 127.0.0.1:65535 {
	health_headers {
		Host example.com
		X-Header-Key 95ca39e3cbe7
		X-Header-Keys VbG4NZwWnipo 335Q9/MhqcNU3s2TO
		X-Empty-Value
	}
	health_uri /health
}
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":8884"
					],
					"routes": [
						{
							"handle": [
								{
									"handler": "reverse_proxy",
									"health_checks": {
										"active": {
											"headers": {
												"Host": [
													"example.com"
												],
												"X-Empty-Value": [
													""
												],
												"X-Header-Key": [
													"95ca39e3cbe7"
												],
												"X-Header-Keys": [
													"VbG4NZwWnipo",
													"335Q9/MhqcNU3s2TO"
												]
											},
											"uri": "/health"
										}
									},
									"upstreams": [
										{
											"dial": "127.0.0.1:65535"
										}
									]
								}
							]
						}
					]
				}
			}
		}
	}
}