2022-10-20 16:15:11 +08:00
|
|
|
user nginx;
|
|
|
|
worker_processes auto;
|
|
|
|
|
|
|
|
error_log /var/log/nginx/error.log notice;
|
|
|
|
pid /var/run/nginx.pid;
|
|
|
|
|
|
|
|
|
2022-09-27 22:53:24 +08:00
|
|
|
events {
|
2022-10-20 16:15:11 +08:00
|
|
|
worker_connections 1024;
|
2022-09-27 22:53:24 +08:00
|
|
|
}
|
|
|
|
|
2022-10-20 16:15:11 +08:00
|
|
|
|
2022-09-27 22:53:24 +08:00
|
|
|
http {
|
2022-10-28 17:04:57 +08:00
|
|
|
include mime.types;
|
2022-09-27 22:53:24 +08:00
|
|
|
default_type application/octet-stream;
|
2022-10-20 16:15:11 +08:00
|
|
|
|
|
|
|
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;
|
2022-09-27 22:53:24 +08:00
|
|
|
sendfile on;
|
2022-11-24 10:28:39 +08:00
|
|
|
|
|
|
|
server_names_hash_bucket_size 512;
|
|
|
|
client_header_buffer_size 32k;
|
|
|
|
client_max_body_size 50m;
|
|
|
|
keepalive_timeout 60;
|
|
|
|
|
|
|
|
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;
|
|
|
|
gzip_vary on;
|
|
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
|
|
gzip_disable "MSIE [1-6]\.";
|
2022-10-20 16:15:11 +08:00
|
|
|
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
2022-09-27 22:53:24 +08:00
|
|
|
}
|