Created
February 27, 2013 17:33
-
-
Save qknight/5049825 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_proxy.c> | |
#turning ProxyRequests on and allowing proxying from all may allow | |
#spammers to use your proxy to send email. | |
ProxyRequests Off | |
<Proxy *> | |
AddDefaultCharset off | |
Order deny,allow | |
##### have edited the 2 lines below | |
Allow from all | |
Deny from none | |
</Proxy> | |
# Enable/disable the handling of HTTP/1.1 "Via:" headers. | |
# ("Full" adds the server version; "Block" removes all outgoing Via: headers) | |
# Set to one of: Off | On | Full | Block | |
ProxyVia On | |
</IfModule> | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment