Gzip compression with NGINX

Gzip compression with NGINX

20 Apr 2016 4 min read

We often do some server administration job for the server we work on and host our corporate and client sites which are at development.  One day we decided to turn GZIP compression on at the server to speed up the HTTP packets downloading.  Although it seemed to be a trivial task, but it turned out that a good manual, that could clearly explain how to do it for Nginx on Centos 7, was difficult to find.

Eventually after we have successfully coped with this problem, we decided our experience is going to be useful and set up such a manual.

ngx_http_gzip_module – it’s such a filter that reduce size of transmitted data to twice or more by compressing response with Gzip.

Activate GZIP on Nginx in this file   /usr/local/etc/nginx/nginx.conf

http {
...
# Enable / Disable the gzip compression
gzip on;
# The minimum size of compressing file, in bytes
gzip_min_length 1000;
# Set the buffer size for all proxy requests
gzip_proxied any;
# MIME types that should be compressed
# gzip_types text/plain text/html text/xml application/xml application/x-javascript text/javascript text/css text/json;
# If there are warnings, like "duplicate MIME type text/html", then you should exclude text/html
#gzip_types text/plain text/xml application/xml application/x-javascript text/javascript text/css text/json;
# It is forbidden to use Gzip compression for IE6
gzip_disable "msie6";
# Level of Gzip compression
gzip_comp_level 8;
...
}

Be sure restart the Nginx.

Now if you want to test how Gzip compression is working on Nginx, please follow next.

[my@lan ~]$ curl --header "Accept-Encoding: gzip,deflate,sdch" -I http://www.scalescale.com/tips/nginx
HTTP/1.1 200 OK
Server: nginx
Date: Tue, 26 Feb 2013 15:41:38 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
Vary: Accept-Encoding
X-Pingback: http://www.scalescale.com/tips/nginx/xmlrpc.php
Content-Encoding: gzip

We hope you would find it useful!

ERP development final cta

Get a Custom Solution with Web Design Sun

At Web Design Sun, we specialize in building web applications for clients in every business and industry.  If you’re interested in custom applications for your business, contact us today.

Contact us today to get started

More From Blog

Why You Should Register Trademarks For Your Business

There is no better way to keep your intellectual property safe than with a trademark. There are many elements of your company that you can protect in this way.
19 Jul 2019 4 min read

Web Application Development Complete Guide. Part 1 – Meaning, Types, Examples.

As a custom web application development company, we got many questions from our customers about what exatly web application is and how it differs from website or mobile app, how to understand what type to choose. In this guide we give all answers.
9 Nov 2021 20 min read

How To Develop Widgets For Gutenberg Using ACF

Gutenberg is a new WordPress editor for posts and pages, built on the principles of builders, allows you to write custom page builder elements. Using the ACF plugin, you can very simply make a widget of any type. And here we'll show how.
1 May 2020 6 min read