Advertisement
Guest User

Untitled

a guest
Oct 26th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <IfModule mod_proxy.c>
  2. #turning ProxyRequests on and allowing proxying from all may allow
  3. #spammers to use your proxy to send email.
  4.  
  5. ProxyRequests Off
  6.  
  7. <Proxy *>
  8. AddDefaultCharset off
  9. Order deny,allow
  10. Deny from all
  11. #Allow from .example.com
  12. </Proxy>
  13.  
  14. # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  15. # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  16. # Set to one of: Off | On | Full | Block
  17.  
  18. ProxyVia On
  19. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement