Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Nginx Essentials
  • Table Of Contents Toc
Nginx Essentials

Nginx Essentials

By : Kholodkov, Valery I Kholodkov
3.3 (6)
close
close
Nginx Essentials

Nginx Essentials

3.3 (6)
By: Kholodkov, Valery I Kholodkov

Overview of this book

This book is ideal for skilled web masters and site reliability engineers who want to switch to Nginx or solidify their knowledge of Nginx. Knowledge of Unix and webmaster skills are required.
Table of Contents (8 chapters)
close
close

Enabling response compression


Performance of your website can be improved by enabling response compression using GZIP. Compression reduces the size of a response body, reduces the bandwidth required to transfer the response data, and ultimately makes sure the resources of your website are delivered to the client side sooner.

Compression can be enabled using the gzip directive:

location / {
    gzip on;
    [...]
}

This directive is valid in the http, server, location, and if sections. Specifying off as the first argument of this directive disables compression in the corresponding location if it was enabled in outer sections.

By default, only documents with MIME type text/HTML are compressed. To enable compression for other types of documents, use the gzip_types directive:

location / {
    gzip on;
    gzip_types text/html text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
    [...]
}

The preceding configuration enables compression for MIME...

Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Nginx Essentials
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon