aboutsummaryrefslogtreecommitdiff
path: root/template2/server.json.template
blob: 22f12519456145eea09ae99af615a5d515c7476d (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
{
    "$schema": "./server.schema.json",
    "domains": [
        {
            "name": "@",
            "services": [
                {
                    "type": "static-file",
                    "path": "/",
                    "root": "/srv/www"
                },
                {
                    "type": "redirect",
                    "path": "/github",
                    "to": "https://github.com/crupest"
                },
                {
                    "type": "reverse-proxy",
                    "path": "/_${V2RAY_PATH}",
                    "upstream": "crupest-v2ray:10000"
                }
            ]
        },
        {
            "name": "code",
            "services": [
                {
                    "type": "reverse-proxy",
                    "path": "/",
                    "upstream": "code-server:8080"
                }
            ]
        },
        {
            "name": "timeline",
            "services": [
                {
                    "type": "reverse-proxy",
                    "path": "/",
                    "upstream": "timeline:5000"
                }
            ]
        },
        {
            "name": "blog",
            "services": [
                {
                    "type": "static-file",
                    "path": "/",
                    "root": "/srv/blog"
                }
            ]
        },
        {
            "name": "mail"
        }
    ]
}