Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm looking for "how to compress load time js file"...
and i try the solution of my question (i'm using Extjs)....

my friend suggest this too.
but, it use apache as web server... anybody know how to do the trick in NGINX??

my hosting use nginx as web server...
and i dont know anything about webserver configuration...

sorry, if my english bad..

share|improve this question
I don't think this is anyway related to extjs tag.. so I am removing it – Abdel Olakara Feb 27 '11 at 12:54
very good... keep it up brother :) – Hendy Irawan May 5 '12 at 16:09

2 Answers

up vote 13 down vote accepted

If you do not know anything abt webserver configuration, i am assuming you also do not know how/where to edit the config file.

The nginx conf file is located at /etc/nginx/nginx.conf (verified in Ubuntu 12.04)

By default, nginx gzip module is enabled. So check from this service whether it is enabled on not ( http://www.whatsmyip.org/http_compression/ )

If it is disabled, add this before server {...} entry in nginx.conf

# output compression saves bandwidth
  gzip  on;
  gzip_http_version 1.1;
  gzip_vary on;
  gzip_comp_level 6;
  gzip_proxied any;
  gzip_types text/plain text/html text/css application/json application/javascript application/x-javascript text/javascript text/xml application/xml application/rss+xml application/atom+xml application/rdf+xml;

  # make sure gzip does not lose large gzipped js or css files
  # see http://blog.leetsoft.com/2007/07/25/nginx-gzip-ssl.html
  gzip_buffers 16 8k;

  # Disable gzip for certain browsers.
  gzip_disable “MSIE [1-6].(?!.*SV1)”;
share|improve this answer
i'm not sure, but i find my nginx conf in /etc/nginx/nginx.conf... thanks for your help – Warung Nasi 49 Feb 27 '11 at 14:04

You need to use the nginx HTTP gzip or the nginx HTTP gzip static module. The static module would be helpful for content like your JavaScript libraries that rarely changes, saving you needless re-compression for every client.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.