Apache: resources not loaded after a redirect with proxypass
Solution 1:
If I understood, you want all requests for http://container1/superset to be forwarded to http://container2:8088
Correct?
Would a simple:
ProxyPass /superset http://10.10.10.68:8088/
ProxyPassReverse /superset http://10.10.10.68:8088/
instead of:
ProxyPass /superset/ http://10.10.10.68:8088/
<Location /superset/>
ProxyPassReverse /
ProxyHTMLEnable On
ProxyHTMLURLMap http://10.10.10.68:8088/ /superset/
ProxyHTMLURLMap / /superset/
</Location>
work?
See: https://httpd.apache.org/docs/2.2/mod/mod_proxy.html -> "Basic Examples"