Skip to content

Instantly share code, notes, and snippets.

@qknight
Created February 27, 2013 17:33
Show Gist options
  • Save qknight/5049825 to your computer and use it in GitHub Desktop.
Save qknight/5049825 to your computer and use it in GitHub Desktop.
<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