25 lines
475 B
Nginx Configuration File
25 lines
475 B
Nginx Configuration File
user http;
|
|
worker_processes 4;
|
|
#pid /run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 2048;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
types_hash_bucket_size 128;
|
|
server_tokens off;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
include /etc/nginx/mime.types;
|
|
include /etc/nginx/sites-enabled/*;
|
|
}
|