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.
65 lines
1.8 KiB
65 lines
1.8 KiB
user nginx;
|
|
worker_processes auto;
|
|
worker_rlimit_nofile 51200;
|
|
|
|
|
|
load_module /usr/lib/nginx/modules/ngx_http_brotli_filter_module.so;
|
|
load_module /usr/lib/nginx/modules/ngx_http_brotli_static_module.so;
|
|
|
|
events
|
|
{
|
|
use epoll;
|
|
worker_connections 51200;
|
|
multi_accept on;
|
|
}
|
|
|
|
|
|
error_log /var/log/nginx/error.log notice;
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
|
|
|
access_log /var/log/nginx/access.log main;
|
|
sendfile on;
|
|
tcp_nodelay on;
|
|
tcp_nopush off;
|
|
proxy_buffering off;
|
|
keepalive_timeout 300;
|
|
fastcgi_intercept_errors on;
|
|
fastcgi_connect_timeout 300;
|
|
fastcgi_send_timeout 300;
|
|
fastcgi_read_timeout 300;
|
|
fastcgi_buffer_size 256k;
|
|
fastcgi_buffers 64 32k;
|
|
fastcgi_busy_buffers_size 256k;
|
|
fastcgi_temp_file_write_size 512k;
|
|
max_ranges 1;
|
|
gzip on;
|
|
gzip_min_length 1k;
|
|
gzip_buffers 4 16k;
|
|
gzip_http_version 1.1;
|
|
gzip_comp_level 4;
|
|
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]\.";
|
|
|
|
brotli on;
|
|
brotli_comp_level 6;
|
|
brotli_buffers 16 8k;
|
|
brotli_min_length 20;
|
|
brotli_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
|
|
include conf.d/*.conf;
|
|
|
|
|
|
}
|
|
|