GeneralConfig/nginx/nginx.conf

25 lines
475 B
Nginx Configuration File
Raw Permalink Normal View History

2020-06-17 13:31:05 -03:00
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;
2023-09-25 13:39:15 -03:00
types_hash_max_size 2048;
types_hash_bucket_size 128;
2020-06-17 13:31:05 -03:00
server_tokens off;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
2023-09-25 13:39:15 -03:00
include /etc/nginx/mime.types;
2020-06-17 13:31:05 -03:00
include /etc/nginx/sites-enabled/*;
}