|  | @@ -3,8 +3,6 @@ server {
 | 
	
		
			
				|  |  |     listen  [::]:80;
 | 
	
		
			
				|  |  |     server_name  localhost;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -   access_log  /var/log/nginx/host.access.log  main;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |     gzip on;
 | 
	
		
			
				|  |  |     gzip_disable "msie6";
 | 
	
		
			
				|  |  |     gzip_vary on;
 | 
	
	
		
			
				|  | @@ -14,11 +12,12 @@ server {
 | 
	
		
			
				|  |  |     gzip_http_version 1.1;
 | 
	
		
			
				|  |  |     gzip_types text/plain application/css text/css application/xml text/javascript application/javascript application/x-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 +27,4 @@ server {
 | 
	
		
			
				|  |  |     location = /50x.html {
 | 
	
		
			
				|  |  |        root   /usr/share/nginx/html;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  }
 |