LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Apache 2.0 Reverse Proxy Error (https://www.linuxquestions.org/questions/linux-networking-3/apache-2-0-reverse-proxy-error-121105/)

Adam Shapiro 11-29-2003 07:50 PM

Apache 2.0 Reverse Proxy Error
 
I just added the mod_proxy.so module to my httpd.conf and set up my configuration as follows:

<IfModule mod_proxy.c>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
</IfModule>

ProxyPass /route http://192.168.1.1
ProxyPassReverse /route http://192.168.1.1


Whenever I try to access route (http://localhost/route) it gives me a 403 Forbidden error. I can't seem to see why it is doing this, I've tried many different approaches and changes (adding ":80/" to the end of the URL's, etc) and nothing seems to work. Any advice?


All times are GMT -5. The time now is 07:05 PM.