-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit.json
More file actions
39 lines (39 loc) · 724 Bytes
/
unit.json
File metadata and controls
39 lines (39 loc) · 724 Bytes
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
{
"listeners": {
"*:8000": {
"pass": "routes",
"forwarded": {
"protocol": "X-Forwarded-Proto",
"source": [
"172.17.0.0/16",
"172.18.0.0/16",
"172.19.0.0/16",
"172.20.0.0/16",
"172.21.0.0/16",
"172.22.0.0/16",
"172.19.0.0/16"
]
}
}
},
"routes": [
{
"match": {
"uri": "!/index.php"
},
"action": {
"share": "/var/www/html/public$uri",
"fallback": {
"pass": "applications/laravel"
}
}
}
],
"applications": {
"laravel": {
"type": "php",
"root": "/var/www/html/public",
"script": "index.php"
}
}
}