18 lines
377 B
Nginx Configuration File
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;
|
|
}
|