baseimage-tutorial-framework/nginx/nginx.conf

23 lines
390 B
Nginx Configuration File
Raw Normal View History

worker_processes auto;
pid /tmp/nginx.pid;
2018-04-17 13:14:02 +00:00
events {
worker_connections 1024;
}
2018-04-17 13:14:02 +00:00
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /dev/stdout;
error_log /dev/stderr;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}