Greetings:
I am trying to use Apache as a routing server, which receives http requests and sends them to different machines based on the domain. I am attempting to do this using the reverse proxy features.
I have started by attempting to set up a single proxy entry by putting the following into my httpd.conf file:
ProxyPreserveHost On
ProxyPass / ProxyPassReverse /
My machine is called proxbox and is running Fedora 15 (if that makes any difference!). Apache is listening on Port 80, and my firewall is configured to allow requests on that port.
The address given in the ProxyPass and ProxyPassReverse lines point to a machine that is in my local network.
According to what I have read in the Apache documentation, I am doing everything right.
Nevertheless, if I run Apache and attempt to access my source server through the URL: I get a "Service Temporarily Unavailable" failure.
Am I missing something here? How can I get this routing to work?
I am trying to use Apache as a routing server, which receives http requests and sends them to different machines based on the domain. I am attempting to do this using the reverse proxy features.
I have started by attempting to set up a single proxy entry by putting the following into my httpd.conf file:
ProxyPreserveHost On
ProxyPass / ProxyPassReverse /
My machine is called proxbox and is running Fedora 15 (if that makes any difference!). Apache is listening on Port 80, and my firewall is configured to allow requests on that port.
The address given in the ProxyPass and ProxyPassReverse lines point to a machine that is in my local network.
According to what I have read in the Apache documentation, I am doing everything right.
Nevertheless, if I run Apache and attempt to access my source server through the URL: I get a "Service Temporarily Unavailable" failure.
Am I missing something here? How can I get this routing to work?