bundlewrap/bundles/nginx/files/nginx.conf
mwiegand 4150a3fb4d wip
2021-07-07 01:02:22 +02:00

18 lines
377 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;
include /etc/nginx/sites/*;
sendfile on;
server_names_hash_bucket_size 128;
tcp_nopush on;
}