Guest User

Untitled

a guest
May 20th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. gzip on;
  2. gzip_min_length 1100;
  3. gzip_buffers 4 8k;
  4. gzip_proxied any;
  5. gzip_types      text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;[/code]
  6.  
  7. If you're looking to set some expiry headers to images, etc in nginx try this.
  8.  
  9. [code]location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|mov)$ {
  10. expires 30d;
  11. break;
  12.  
  13. }
Add Comment
Please, Sign In to add comment