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...... } 2. Drag the pictures we need to display into the folder 3. Insert this picture into the web page vim index.html ...... <img src="game.jpg"/> #Insert pictures into the webpage</body> </html> 4. Restart the service 5. Check in the element and find that it has been compressed 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:
|
<<: Detailed explanation of MySQL Workbench usage tutorial
>>: W3C Tutorial (12): W3C Soap Activity
What is a covering index? Creating an index that ...
Table of contents Overview The history of CPU-bou...
How to view files in a docker image 1. If it is a...
This article example shares the specific code of ...
Preface Many web applications store data in a rel...
Table of contents Global Registration Partial Reg...
Table of contents Global variable globalData Page...
By default, /etc/default/docker configuration wil...
Table of contents Question: 1. First attempt 2. R...
Table of contents 1. What is lazy loading of rout...
Copy code The code is as follows: <!--[if IE]&...
Preview address: https://ovsexia.gitee.io/leftfix...
Table of contents Demand background Thought Analy...
effect: The GROUP_CONCAT function can concatenate...
This article example shares the specific code of ...