how to enable gzip compression in nginx

How to Enable NGINX Gzip Compression

GZIP compression allows NGINX server to compress data before sending it to client browser. This reduces data bandwidth, improves website speed and saves server costs. Here are the steps to enable NGINX GZip compression.


How to Enable NGINX Gzip Compression

Here are the steps to enable NGINX GZip compression.

1. Open NGINX Configuration file

Open terminal and run the following command to open NGINX server configuration file.

$ sudo vi /etc/nginx/nginx.conf

If you have configured separate virtual hosts for your website (e.g www.example.com), such as /etc/nginx/sites-enabled/website.conf then open its configuration with the following command

$ sudo vi /etc/nginx/sites-enabled/website.conf

Bonus Read : How to Enable Browser Caching in NGINX


2. Enable GZIP Compression in NGINX

Add/Uncomment the following lines in your NGINX configuration file.

gzip on; 
gzip_vary on; 
gzip_min_length 1024; 
gzip_proxied expired no-cache no-store private auth; 
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml; 
gzip_disable "MSIE [1-6]\.";

Let us look at each of the above lines

  • gzip on – turns on gzip compression
  • gzip_vary on – enable gzip for both gzipped and regular versions of a file
  • gzip_min_length – compress files that are larger than 1024 bytes (1kb). Small files cannot be compressed much.
  • gzip_proxied – compress data even for users connected via proxies
  • gzip_types – specifies the file types to be compressed
  • gzip_disable – disable gzip for IE browser versions 1-6, since they do not support GZIP compression

Bonus Read : How to Remove Trailing Slash in NGINX

3. Restart NGINX Server

Run the following command to check syntax of your updated config file.

$ sudo nginx -t

If there are no errors, run the following command to restart NGINX server.

$ sudo service nginx reload #debian/ubuntu
$ systemctl restart nginx #redhat/centos

Bonus Read : How to Install & Enable modsecurity in NGINX


4. Verify GZIP Compression

If you are wondering how to verify GZIP compression in NGINX, then there are many third-party tools like GZIP compression test where you can enter your website URL and it will tell you if GZIP compression is enabled on your website.

Hopefully, the above article will help you enable and verify GZIP compression in NGINX.

mm

About Ubiq

Ubiq is a powerful dashboard & reporting platform for small & medium businesses. Build dashboards, charts & reports for your business in minutes. Get insights from data quickly. Try it for free today!