Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change 
notification.

The following page has been changed by megaspaz:
http://wiki.apache.org/httpd/Recipes/TomcatReverseProxy

The comment on the change is:
changed example back to permissive example. added comments to the block example.

------------------------------------------------------------------------------
  '''***Note***''' If you get proxy forbidden errors in your error log, you can 
add a '''<Proxy>''' block and restart Apache to see if this fixes the issue. 
Make sure you understand the 
[http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#access security issues] 
involved with proxies and set up access controls for your proxy configuration.
  
  
- {{{# <Proxy> block example.
+ {{{# <Proxy> block example. Make sure ProxyRequests Off is set.
+ # Since this is a reverse proxy set up, access control is less important.
+ # http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#access
  <Proxy *>
    Order deny,allow
+   Allow from all
-   Deny from all
-   Allow from 192.168.0
  </Proxy>
  }}}
  

Reply via email to