vicarian 0.2.5

Vicarian is a 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 = "/metrics"
                    url = "module://metrics"
                }
            ]
        }
    ]
}