Advertisement
fduran

Apache2 optimization

Apr 13th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # www.fduran.com
  2. # Apache2 optimization
  3.  
  4. # apache-wide (/etc/apache2/apache2.config ):
  5. # compression
  6. AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript
  7. BrowserMatch ^Mozilla/4 gzip-only-text/html
  8. BrowserMatch ^Mozilla/4\.0[678] no-gzip
  9. BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  10.  
  11. # Etags
  12. Header unset ETag
  13. FileETag None
  14.  
  15. # Per <VirtualHost> /etc/apache2/sites-enabled/somesite :
  16. <LocationMatch "\.(css|js|jpg|gif|png|pdf|ico)$">
  17. Header set Cache-Control "max-age=290304000, public"
  18. </LocationMatch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement