Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache Proxy setup

Status
Not open for further replies.
Oct 23, 2003
6
US
I am working on setup of a proxy server. I added the following to httpd.conf.
The proxy does not forward my browser to What am i missing? (i did restart apache)
TIA

<IfModule mod_proxy.c>
ProxyRequests On
<Directory proxy:>
Order deny, allow
Deny from all
Allow from company.com

ProxyPass ProxyPassReverse
</Directory>
</IfModule>
 
I'm by no means and expert but have you tried removing the domain information for your apache proxy from the directives?

You have:[ignore]
ProxyPass ProxyPassReverse [/ignore]
I would expect to see:[ignore]
ProxyPass / ProxyPassReverse / [/ignore]
This presumes you are not using VirtualHosts and your request headers are for [ignore][/ignore]

The net effect should be if you browse for [ignore][/ignore] you will actually see [ignore][/ignore]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top