You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Hanack Leif <Le...@t-systems.com> on 2005/01/07 16:49:51 UTC

[users@httpd] RE: Reverse proxy using https not working

> I have used the directive for the proxy
> 
> ProxyRequests Off
> <Location "/edgeui" >
>   ProxyPass    https://dev14.xyz.com:9443/edgeui
>   ProxyPassReverse  https://dev14.xyz.com:9443/edgeui </Location>
> 
> But this does not seem to work.
> 

Try this one:

ProxyRequests Off
ProxyPass /edgeui   https://dev14.xyz.com:9443/edgeui
ProxyPassReverse /edgeui https://dev14.xyz.com:9443/edgeui

if you want to proxy all requests:

ProxyRequests Off
ProxyPass /   https://dev14.xyz.com:9443/
ProxyPassReverse / https://dev14.xyz.com:9443/
 

hope this will help you!

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org