fox-proxy/etc/nginx/nginx.conf

43 lines
1.2 KiB
Nginx Configuration File

worker_processes 4;
daemon off;
user root;
error_log /var/log/nginx/nginx.error.log;
events {
use epoll;
worker_connections 1024;
}
include upstreams/*;
include maps/*;
include ldap/*;
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;
}