1 # DO NOT EDIT - This file is being maintained by Chef
4 worker_processes <%= node['cpu']['total'] %>;
6 error_log /var/log/nginx/error.log warn;
7 pid /var/run/nginx.pid;
11 worker_connections 1024;
16 include /etc/nginx/mime.types;
17 default_type application/octet-stream;
19 log_format main '$remote_addr - $remote_user [$time_local] "$request" '
20 '$status $body_bytes_sent "$http_referer" '
21 '"$http_user_agent" "$http_x_forwarded_for"';
23 access_log /var/log/nginx/access.log main;
32 include /etc/nginx/conf.d/*.conf;