blob: e810234f23dbdb18cc2d16f7344f634115879cf1 (
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
|
{
"$schema": "./server.schema.json",
"sites": [
{
"type": "reverse-proxy",
"subdomain": "timeline",
"upstream": "timeline:5000"
},
{
"type": "static-file",
"subdomain": "blog",
"root": "/srv/blog"
},
{
"type": "redirect",
"subdomain": "github",
"url": "https://github.com/crupest"
},
{
"type": "cert-only",
"subdomain": "mail"
}
]
}
|