Обновить z1/nginx.conf

This commit is contained in:
Yan Kasabutski 2025-03-18 00:18:44 +00:00
parent 330965fd48
commit 66ce79e3f5

View File

@ -1,23 +1,24 @@
# nginx.conf # nginx.conf
worker_processes 1; worker_processes 1;
events { events {
worker_connections 1024; worker_connections 1024;
} }
http { http {
include mime.types; include mime.types;
default_type application/octet-stream; default_type application/octet-stream;
# Логирование # логирование
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log; access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
sendfile on;
tcp_nopush on; sendfile on;
tcp_nodelay on; tcp_nopush on;
keepalive_timeout 65; tcp_nodelay on;
types_hash_max_size 2048; keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/conf.d/*.conf;
} include /etc/nginx/conf.d/*.conf;
}