|
@@ -3,22 +3,17 @@ server {
|
|
|
listen [::]:80;
|
|
|
server_name localhost;
|
|
|
|
|
|
- access_log /var/log/nginx/host.access.log main;
|
|
|
-
|
|
|
gzip on;
|
|
|
- gzip_disable "msie6";
|
|
|
- gzip_vary on;
|
|
|
- gzip_proxied any;
|
|
|
+ gzip_static on;
|
|
|
gzip_comp_level 6;
|
|
|
- gzip_buffers 16 8k;
|
|
|
- gzip_http_version 1.1;
|
|
|
- gzip_types text/plain application/css text/css application/xml text/javascript application/javascript application/x-javascript;
|
|
|
-
|
|
|
+ gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
|
|
location / {
|
|
|
root /usr/share/nginx/html;
|
|
|
#index index.html;
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
+ client_max_body_size 300m; #最大接受300m文件以内的
|
|
|
+ client_body_timeout 20s;
|
|
|
}
|
|
|
#error_page 404 /404.html;
|
|
|
|
|
@@ -28,5 +23,4 @@ server {
|
|
|
location = /50x.html {
|
|
|
root /usr/share/nginx/html;
|
|
|
}
|
|
|
-
|
|
|
}
|