Can't access Apache container through Caddy

Hey, thank you for the welcome.

I’ve already read the reverse proxy guide several times.

That’s why I’m here looking for support, as I was unable to resolve the issue myself. Over the last two days, I have been unsuccessful with getting the Apache container to talk through my reverse proxy. I’ve tried adjusting APACHE_IP_BINDING, and I’ve also tried adding the following to my Caddyfile:

https://nc.domain.com:443 {
        reverse_proxy localhost:11000 {
                transport http {
                        tls_insecure_skip_verify
                }
        }
}

As per the file in this post.

Nothing seems to work.

I’m able to verify connection with the Apache container with the following commands:

nc -z localhost 11000; echo $?
nc -z <container-ip> 11000; echo $?
nc -z <lan-ip> 11000; echo $?