lemonldap-ng/e2e-tests/nginx.conf

23 lines
420 B
Nginx Configuration File
Raw Normal View History

2016-01-26 14:15:51 +01:00
worker_processes auto;
pid conf/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
sendfile on;
client_body_temp_path conf/;
2016-01-26 14:15:51 +01:00
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
error_log conf/nginx.log info;
2016-01-26 14:15:51 +01:00
gzip off;
2016-01-28 07:43:48 +01:00
include conf/*nginx.conf;
2016-02-24 08:26:53 +01:00
access_log conf/nginx.log lm_combined;
2016-01-26 14:15:51 +01:00
}