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