Advertisement
Guest User

Untitled

a guest
May 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.43 KB | None | 0 0
  1.     # GZip Compress text mimetypes
  2.     <Location />
  3.       <IfModule mod_deflate.c>
  4.         # compress content with type html, text, and css
  5.         AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml text/javascript
  6.         <IfModule mod_headers.c>
  7.           # properly handle requests coming from behind proxies
  8.           Header append Vary Accept-Encoding
  9.         </IfModule>
  10.       </IfModule>
  11.     </Location>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement