1234567891011121314151617181920212223242526272829303132333435363738 |
- # 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
- user root;
- error_log /var/nginx_error.log crit; #notice info
- 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;
- sendfile_max_chunk 512k;
- tcp_nopush on;
-
- server_names_hash_bucket_size 128;
- client_header_buffer_size 32k;
- large_client_header_buffers 4 32k;
- client_max_body_size 200m;
- keepalive_timeout 60;
- tcp_nodelay on;
- gzip on;
- gzip_min_length 1k;
- gzip_buffers 4 16k;
- gzip_http_version 1.1;
- gzip_comp_level 2;
- gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
- gzip_vary on;
- gzip_proxied expired no-cache no-store private auth;
- gzip_disable "MSIE [1-6]\.";
- include conf.d/*.conf;
- }
|