aboutsummaryrefslogtreecommitdiffhomepage
path: root/mioproxy.prod.hcl
blob: 55ec6443469897bf7eefef848516e18491ca3f47 (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
59
60
61
62
63
64
65
66
67
68
69
user = "ken"

server http {
    host = "0.0.0.0"
    port = 80

    redirect_to_https = true
    acme_challenge {
        root = "letsencrypt/webroot"
    }
}

server https {
    host = "0.0.0.0"
    port = 443

    tls_cert_file = "letsencrypt/lego/certificates/nsfisis.dev.crt"
    tls_key_file = "letsencrypt/lego/certificates/nsfisis.dev.key"

    proxy default {
        from {
            host = "nsfisis.dev"
        }
        to {
            host = "127.0.0.1"
            port = 8001
        }
    }

    proxy about {
        from {
            host = "about.nsfisis.dev"
        }
        to {
            host = "127.0.0.1"
            port = 8001
        }
    }

    proxy blog {
        from {
            host = "blog.nsfisis.dev"
        }
        to {
            host = "127.0.0.1"
            port = 8001
        }
    }

    proxy slides {
        from {
            host = "slides.nsfisis.dev"
        }
        to {
            host = "127.0.0.1"
            port = 8001
        }
    }

    proxy repos {
        from {
            host = "repos.nsfisis.dev"
        }
        to {
            host = "127.0.0.1"
            port = 8002
        }
    }
}