mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			906 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			906 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
 | |
| user nobody nogroup;
 | |
| worker_processes  1;
 | |
| 
 | |
| #error_log  logs/error.log;
 | |
| #error_log  logs/error.log  notice;
 | |
| #error_log  logs/error.log  info;
 | |
| 
 | |
| pid        /var/run/nginx.pid;
 | |
| 
 | |
| 
 | |
| events {
 | |
|     worker_connections  1024;
 | |
| }
 | |
| 
 | |
| 
 | |
| http {
 | |
|     include       mime.types;
 | |
|     default_type  application/octet-stream;
 | |
| 
 | |
|     sendfile on;
 | |
|     keepalive_timeout 0;
 | |
|     
 | |
|     client_body_buffer_size 10K;
 | |
|     client_header_buffer_size 1k;
 | |
|     client_max_body_size 1G;
 | |
|     large_client_header_buffers 2 1k;
 | |
| 
 | |
|     gzip on;
 | |
|     gzip_http_version 1.1;
 | |
|     gzip_vary on;
 | |
|     gzip_comp_level 1;
 | |
|     gzip_proxied any;
 | |
|     
 | |
|     root /www;
 | |
| 
 | |
|     server {
 | |
|         listen 80 default_server;
 | |
|         listen [::]:80 default_server;
 | |
|         server_name  localhost;
 | |
|         
 | |
|         location ~* .(jpg|jpeg|png|gif|ico|css|js)$ {
 | |
|             expires 365d;
 | |
|         }
 | |
| 
 | |
|         include luci_uwsgi.conf;
 | |
| 
 | |
|     }
 | |
| 
 | |
|     include /etc/nginx/conf.d/*.conf;
 | |
| }
 |