13 lines
264 B
Text
13 lines
264 B
Text
worker_processes <%= nginx.worker.process_count %>;
|
|
user <%= nginx.user %>;
|
|
|
|
events {
|
|
worker_connections <%= nginx.worker.conn_count %>;
|
|
}
|
|
|
|
http {
|
|
server_tokens off;
|
|
include mime.types;
|
|
charset utf-8;
|
|
include /usr/local/etc/nginx/enabled_sites/*.conf;
|
|
}
|