diff options
Diffstat (limited to 'docs/conf/httpd-nw.conf')
-rw-r--r-- | docs/conf/httpd-nw.conf | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/docs/conf/httpd-nw.conf b/docs/conf/httpd-nw.conf index d9f0c75da6..c5724fafcb 100644 --- a/docs/conf/httpd-nw.conf +++ b/docs/conf/httpd-nw.conf @@ -858,15 +858,47 @@ BrowserMatch "JDK/1\.0" force-response-1.0 #</Location> # +# Proxy Server directives. Uncomment the following lines to +# enable the proxy server: +# +#<IfModule mod_proxy.c> +#ProxyRequests On +# +#<Proxy *> +# Order deny,allow +# Deny from all +# Allow from .your_domain.com +#</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 + +# +# To enable the cache as well, edit and uncomment the following lines: +# (no cacheing without CacheRoot) +# +#CacheRoot "@@ServerRoot@@/proxy" +#CacheSize 5 +#CacheGcInterval 4 +#CacheMaxExpire 24 +#CacheLastModifiedFactor 0.1 +#CacheDefaultExpire 1 +#NoCache a_domain.com another_domain.edu joes.garage_sale.com + +#</IfModule> +# End of proxy directives. + +# # Bring in additional module-specific configurations # <IfModule mod_ssl.c> Include conf/ssl.conf </IfModule> -<IfModule mod_proxy.c> - Include conf/proxy.conf -</IfModule> ### Section 3: Virtual Hosts # |