bundlewrap/bundles/nginx/files/nginx.conf
mwiegand 0d734655fe wip
2021-07-08 02:15:49 +02:00

25 lines
543 B
Nginx Configuration File

pid /var/run/nginx.pid;
user www-data;
worker_processes 10;
events {
worker_connections 768;
}
http {
access_log /var/log/nginx/access.log;
default_type application/octet-stream;
error_log /var/log/nginx/error.log;
include /etc/nginx/mime.types;
sendfile on;
server_names_hash_bucket_size 128;
tcp_nopush on;
% if node.has_bundle('php'):
upstream php-handler {
server unix:/var/run/php/php${node.metadata.get('php/version')}-fpm.sock;
}
% endif
include /etc/nginx/sites/*;
}