Streaming gRPC over port 443

Sang, welcome to the forum!

  1. Are you running caddy in a docker container or binary directly?

  2. @francislavoie I am wondering if this configuration could help Sang? The idea is that we remove the local TLS/HTTPS stage for now and also turn on debug logging:

{
    auto_https off
    debug

    servers {
        timeouts {
                idle 1d
        }
    }
}


http://localhost:4300 { 
    reverse_proxy tempo-us-central1.grafana.net:443 {
        header_up Host {upstream_hostport} 
        header_up Authorization "Bearer {$BEARER}"
        lb_try_duration 30s
        lb_try_interval 1s
        fail_duration 20s
    }
}

Please, let me know what you think - I plan to pair with Sang to look at his exact setup including looking at his code.

1 Like