J'essaie de configurer Apache sur Centos 6 pour proxy et inverser le trafic proxy vers un serveur http d'un fournisseur tiers.
La configuration devrait fonctionner comme ceci:
https://mydomain.com/proxy/
proxy tout le trafic de manière transparente à
http://thirdparty.com/app/
Le problème que j'ai est toute demande faite pour https://mydomain.com/proxy/
obtenir une redirection 301 en réponse.
Ce sont toutes les options liées au proxy dans mon VirtualHost
SetOutputFilter proxy-html
ProxyHTMLExtended On
ProxyRequests Off
SSLProxyEngine On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /proxy/ http://thirdparty.com/app/
<Location /proxy/>
ProxyPassReverse /
ProxyHTMLEnable On
ProxyHTMLURLMap http://thirdparty.com/app/ /proxy/
ProxyHTMLURLMap / /proxy/
</Location>