53 lines
1.4 KiB
Nginx Configuration File
53 lines
1.4 KiB
Nginx Configuration File
load_module /usr/lib/nginx/modules/ngx_stream_module.so;
|
|
load_module /usr/lib/nginx/modules/ngx_stream_geoip2_module.so;
|
|
load_module /usr/lib/nginx/modules/ngx_http_geoip2_module.so;
|
|
|
|
worker_processes 4;
|
|
daemon off;
|
|
|
|
user root;
|
|
|
|
error_log /var/log/nginx/nginx.error.log;
|
|
|
|
events {
|
|
use epoll;
|
|
worker_connections 8192;
|
|
multi_accept on;
|
|
}
|
|
|
|
include upstreams/*;
|
|
include maps/*;
|
|
include conf/conf.d/*.conf;
|
|
|
|
stream {
|
|
include conf/stream/*.conf;
|
|
}
|
|
|
|
http {
|
|
server_names_hash_max_size 2048;
|
|
log_format post '$remote_addr - $remote_user [$time_local] '
|
|
'"$request" $status $body_bytes_sent '
|
|
'"$http_referer" "$http_user_agent" "$request_body"';
|
|
access_log /var/log/nginx/nginx.access.log;
|
|
include mime.types;
|
|
server_tokens off;
|
|
client_max_body_size 4g;
|
|
default_type application/octet-stream;
|
|
server_names_hash_bucket_size 64;
|
|
# push_stream_shared_memory_size 512k;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
keepalive_timeout 4;
|
|
tcp_nodelay on;
|
|
gzip on;
|
|
gzip_static always;
|
|
gzip_proxied any;
|
|
gzip_min_length 1100;
|
|
gzip_http_version 1.1;
|
|
gzip_buffers 4 8k;
|
|
gzip_comp_level 7;
|
|
gzip_types text/plain text/css application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
include conf/hosts/*.conf;
|
|
}
|
|
|