AllowOverride in the docroot
[sysconfig/apache2.git] / mods-available / proxy.conf
1 <IfModule mod_proxy.c>
2         #turning ProxyRequests on and allowing proxying from all may allow
3         #spammers to use your proxy to send email.
4
5         ProxyRequests Off
6
7         <Proxy *>
8                 AddDefaultCharset off
9                 Order deny,allow
10                 Deny from all
11                 #Allow from .example.com
12         </Proxy>
13
14         # Enable/disable the handling of HTTP/1.1 "Via:" headers.
15         # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
16         # Set to one of: Off | On | Full | Block
17
18         ProxyVia On
19 </IfModule>