How to implement web page compression in Nginx optimization service

How to implement web page compression in Nginx optimization service

Configure web page compression to save resources

1. First, let's modify the configuration

vim /usr/local/nginx/conf/nginx.conf
http {
......
  gzip on; #Uncomment and enable gzip compression function gzip_min_length 1k; #Minimum compressed file size gzip_buffers 4 64k; #Compression buffer, size is 4 64k buffers gzip_http_version 1.1; #Compression version (default 1.1, if the front end is squid2.5, please use 1.0)
  gzip_comp_level 6; #Compression ratio gzip_vary on; #Support front-end cache server to store compressed pages gzip_types test/plain text/javascript application/x-javascript text/css text/xml application/xml application/xml+rss
  image/jpg image/jpeg image/png image/gif application/x-httpd-php application/javascript application/json;
  #Compression type, indicating which web documents enable compression function......
} 

insert image description here

insert image description here

2. Drag the pictures we need to display into the folder

insert image description here

3. Insert this picture into the web page

vim index.html
......
<img src="game.jpg"/> #Insert pictures into the webpage</body>
</html> 

insert image description here

4. Restart the service

insert image description here

5. Check in the element and find that it has been compressed

insert image description here

This is the end of this article about Nginx optimization service web page compression. For more relevant Nginx web page compression content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • nginx basic tutorial
  • Nginx Configuration Getting Started Tutorial
  • Getting Started Tutorial on nginx HTTP Server under Windows
  • What is Nginx load balancing and how to configure it
  • Six methods for nginx optimization
  • Detailed explanation of how Nginx solves the problem of cross-domain access to front-end resources
  • Solve the problem of Nginx returning 404 after configuring proxy_pass
  • Limiting the number of short-term accesses to a certain IP based on Nginx
  • Nginx configuration and compatibility with HTTP implementation code analysis
  • Nginx Service Quick Start Tutorial

<<:  Detailed explanation of MySQL Workbench usage tutorial

>>:  W3C Tutorial (12): W3C Soap Activity

Recommend

Vue2 implements provide inject to deliver responsiveness

1. Conventional writing in vue2 // The parent com...

How to isolate users in docker containers

In the previous article "Understanding UID a...

Knowledge about MySQL Memory storage engine

Knowledge points about Memory storage engine The ...

MySQL master-slave data is inconsistent, prompt: Slave_SQL_Running: No solution

This article uses an example to describe the solu...

WeChat applet realizes the function of uploading pictures

This article example shares the specific code for...

Nodejs error handling process record

This article takes the connection error ECONNREFU...

How to use Dockerfile to create a mirror of the Java runtime environment

The current environment is: Centos 7.5 docker-ce ...

HTML+CSS makes div tag add delete icon in the upper right corner sample code

1. Requirements description Display the delete ic...

ftp remotely connect to Linux via SSH

First install ssh in Linux, taking centos as an e...

Nginx rewrite regular matching rewriting method example

Nginx's rewrite function supports regular mat...