lemonldap-ng/e2e-tests/nginx.conf

25 lines
534 B
Nginx Configuration File
Raw Normal View History

2016-01-26 14:15:51 +01:00
worker_processes auto;
pid conf/nginx.pid;
2017-01-09 22:54:06 +01:00
load_module /usr/lib/nginx/modules/ndk_http_module.so;
load_module /usr/lib/nginx/modules/ngx_http_lua_module.so;
2016-01-26 14:15:51 +01:00
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;
2017-01-18 18:55:04 +01:00
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
}