odd-box 0.1.11-patch1

a dead simple reverse proxy server and web server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    log {
        level DEBUG
        output stdout
    }
    auto_https disable_certs
    servers 127.0.0.1:9999 {
        protocols h2 h2c h1
    }
}

:9999 {
    bind "127.0.0.1"
    respond "pong"
    
}