Apache help please? proxypass and proxypassreverse

  • Thread starter Thread starter Deleted member 657006
  • Start date Start date
D

Deleted member 657006

Guest
ProxyRequests On << turns Apache proxies on.
ProxyVia On << allows the proxies to use files
<Proxy *> << start a proxies instance*
Order deny,allow << order the proxies allow
Deny from all << deny an think not allowed
Allow from internal.example.com << allow the url incoming domain
</Proxy> << turns Apache proxies on.


ProxyPass /foo http://foo.example.com/bar << incoming url proxies
ProxyPassReverse /foo http://foo.example.com/bar << re diverted url to proxies

what this part of the proxypass and ProxyPassReverse mean please? (/foo)
 
Back
Top