You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Please consider creating files in /etc/nginx/conf.d/ instead of editing this.
|
|
# For details see https://openwrt.org/docs/guide-user/services/webserver/nginx
|
|
|
|
worker_processes auto;
|
|
|
|
user root;
|
|
|
|
events {}
|
|
|
|
http {
|
|
access_log off;
|
|
log_format openwrt
|
|
'$request_method $scheme://$host$request_uri => $status'
|
|
' (${body_bytes_sent}B in ${request_time}s) <- $http_referer';
|
|
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
|
|
client_max_body_size 128M;
|
|
large_client_header_buffers 2 1k;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
|
|
root /www;
|
|
|
|
include conf.d/*.conf;
|
|
}
|