summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/php_fastcgi_index_off.txt
blob: 5ebdbd2ea93b6a51ea1912c32f9e4aa6234a978a (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
60
61
62
63
64
65
66
67
68
69
70
71
72
:8884

php_fastcgi localhost:9000 {
	# some php_fastcgi-specific subdirectives
	split .php .php5
	env VAR1 value1
	env VAR2 value2
	root /var/www
	index off
	dial_timeout 3s
	read_timeout 10s
	write_timeout 20s

	# passed through to reverse_proxy (directive order doesn't matter!)
	lb_policy random
}
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":8884"
					],
					"routes": [
						{
							"match": [
								{
									"path": [
										"*.php",
										"*.php5"
									]
								}
							],
							"handle": [
								{
									"handler": "reverse_proxy",
									"load_balancing": {
										"selection_policy": {
											"policy": "random"
										}
									},
									"transport": {
										"dial_timeout": 3000000000,
										"env": {
											"VAR1": "value1",
											"VAR2": "value2"
										},
										"protocol": "fastcgi",
										"read_timeout": 10000000000,
										"root": "/var/www",
										"split_path": [
											".php",
											".php5"
										],
										"write_timeout": 20000000000
									},
									"upstreams": [
										{
											"dial": "localhost:9000"
										}
									]
								}
							]
						}
					]
				}
			}
		}
	}
}