1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 19:11:51 +00:00
openmptcprouter-feeds/nginx/files-luci-support/luci_nginx.conf

52 lines
906 B
Text
Raw Normal View History

2018-06-26 10:10:00 +00:00
2018-07-24 19:48:58 +00:00
user nobody nogroup;
2018-06-26 10:10:00 +00:00
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;
2018-12-12 20:28:20 +00:00
sendfile on;
2018-06-26 10:10:00 +00:00
keepalive_timeout 0;
2018-12-12 20:28:20 +00:00
client_body_buffer_size 10K;
client_header_buffer_size 1k;
client_max_body_size 1G;
large_client_header_buffers 2 1k;
2018-06-26 10:10:00 +00:00
gzip on;
gzip_http_version 1.1;
gzip_vary on;
gzip_comp_level 1;
gzip_proxied any;
2018-12-12 20:28:20 +00:00
root /www;
2018-06-26 10:10:00 +00:00
server {
listen 80 default_server;
2018-12-12 20:28:20 +00:00
listen [::]:80 default_server;
2018-06-26 10:10:00 +00:00
server_name localhost;
2018-12-12 20:28:20 +00:00
location ~* .(jpg|jpeg|png|gif|ico|css|js)$ {
expires 365d;
2018-06-26 10:10:00 +00:00
}
2018-12-12 20:28:20 +00:00
include luci_uwsgi.conf;
2018-06-26 10:10:00 +00:00
}
2018-12-12 20:28:20 +00:00
include /etc/nginx/conf.d/*.conf;
}