I've been trying to configure a reverse HTTP proxy on RHEL 5.3 with httpd-2.2.3-22.el5_3.2. I have three virtual hosts on the same IP and I would like to setup reverse proxy for them.
The following are my internal servers: http://marketing.company.tld:30000 ------> 192.168.25.25 http://services.company.tld:28978 ------> 192.168.25.25 http://helpdesk.company.tld:39485 ------> 192.168.25.25 Reverse proxy is setup on /etc/httpd/conf.d/ssl.conf file (reverse proxy runs on port 443 over SSL; port 80 is disabled) <IfModule mod_proxy.c> ProxyRequests Off <Proxy *> Order deny,allow Deny from all Allow from .example.com </Proxy> ProxyPass /marketing/ http://192.168.25.25:30000 ProxyPassReverse /marketing/ http://192.168.25.25:30000 <Location /marketing/> ProxyPassReverse / Order allow,deny Allow from all </Location> </IfModule> I get File Not Found error. Could anyone please give me some example on how to get this thing working? Many thanks. --------------------------------------------------------------------- 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-unsubscr...@httpd.apache.org " from the digest: users-digest-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org