first commit
This commit is contained in:
commit
ba848e218d
1001 changed files with 152333 additions and 0 deletions
16
linux基础/nginx/nginx配置.md
Normal file
16
linux基础/nginx/nginx配置.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
```
|
||||
http {
|
||||
...
|
||||
|
||||
gzip on;
|
||||
gzip_min_length 1k;
|
||||
gzip_buffers 4 16k;
|
||||
gzip_http_version 1.0;
|
||||
gzip_comp_level 2;
|
||||
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png application/vnd.ms-fontobject font/ttf font/opentype font/x-woff image/svg+xml;
|
||||
gzip_vary on;
|
||||
gzip_disable "MSIE [1-6]\.";
|
||||
|
||||
...
|
||||
}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue