Created
March 9, 2013 23:22
-
-
Save qknight/5126239 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
/etc/apache2/mods-enabled/proxy.conf | |
<IfModule mod_proxy.c> | |
ProxyRequests Off | |
<Proxy *> | |
AddDefaultCharset off | |
Order deny,allow | |
Deny from all | |
Allow from localhost | |
</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