Caddy behind Caddy reverse_proxy?

For those getting here via online searches, yes, proxying via HTTPS was the solution for me. Here is my proxy config:

daniel.dev.talent.careers {
        reverse_proxy https://localhost:11005 {
                transport http {
                        tls_insecure_skip_verify
                }
        }
}

Of course, be careful with the tls_insecure_skip_verify, don’t use in production environments, yaddayadda, you know the drill :slight_smile: