blob: f35da6397f0a5a6fc3e10962bf1ed2680de92c1e [file] [log] [blame]
# Proxy configuration file to enable Instaweb to rewrite external
# content. In this configuration we use assume a browser proxy,
# pointing to HOSTNAME:80.
LoadModule proxy_module APACHE_MODULES/mod_proxy.so
# Depends: proxy
LoadModule proxy_http_module APACHE_MODULES/mod_proxy_http.so
<IfModule mod_proxy.c>
ProxyRequests On
ProxyVia On
# limit connections to LAN clients
<Proxy *>
AddDefaultCharset off
Order Deny,Allow
Allow from all
</Proxy>
ProxyPreserveHost On
ProxyStatus On
ProxyBadHeader Ignore
# 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>