blob: 23a6498c6eea4f5b645c6a85c798f712c265985d (
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
|
# {
# debug
# auto_https off
# }
# NOTE: EDIT THIS FILE EXPLICITLY. DO NOT AUTOMATE.
{$DOMAIN}:80 {
root * {$DOCUMENT_ROOT}
encode
try_files {path} index.html
file_server
}
{$SERVICE0_SUB}.{$DOMAIN}:80 {
reverse_proxy {$SERVICE0}:{$SERVICE0_PORT}
}
{$SERVICE1_SUB}.{$DOMAIN}:80 {
reverse_proxy {$SERVICE1}:{$SERVICE1_PORT}
}
{$SERVICE2_SUB}.{$DOMAIN}:80 {
reverse_proxy {$SERVICE2}:{$SERVICE2_PORT}
}
{$SERVICE3_SUB}.{$DOMAIN}:80 {
reverse_proxy {$SERVICE3}:{$SERVICE3_PORT}
}
|