vicarian 0.3.2

Vicarian is a TLS-first reverse-proxy server with ACME support
{
    listen = {
        insecure_port = 18080
        tls_port = 18443
    }
    vhosts = [
        {
            hostname = "www.example.com"

            tls = {
                files = {
                    keyfile = "target/certs/www.example.com.key"
                    certfile = "target/certs/www.example.com.crt"
                    reload = true
                }
            }

            backends = [
                {
                    context = "/"
                    url = "module://static"
                    static_root = "tests/data/static"
                }
            ]
        }
    ]
}