Hello!
I’m having a hard time finding information about whether it’s possible to hide proxy in URI after reverse proxy.
I’m using Caddy latest docker release.
Caddyfile (sorry, but I’ll replace my domain to example.com since infrastructure is not yet fully secure):
dc.example.com {
reverse_proxy 192.168.1.101:88
}
Scenario:
I enter dc.example.com and get back dc.example.com:444/main
Can I somehow specify in Caddyfile to remove the port from the URI? I saw the documentation about uri manipulations , but didn’t succeeded to remove the port from URI.
Could anyone provide an example, if it’s possible?
Thanks a lot~