puppet/nginx/templates/nginx.conf.erb
2011-11-28 08:54:59 +02:00

18 lines
287 B
Text

user <%= user %>;
worker_processes <%= processorcount %>;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nodelay on;
tcp_nopush on;
keepalive_timeout 65;
include conf.d/*.conf;
}