This commit is contained in:
2024-11-24 19:58:14 +03:00
parent 5bc41c853f
commit bb79295969
4 changed files with 56 additions and 46 deletions

View File

@ -1,10 +1,10 @@
user nginx;
worker_processes {{ nginx_worker_processes }};
error_log {{ nginx_error_log }} {{ nginx_error_log_level }};
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections {{ nginx_worker_connections }};
worker_connections 1024;
}
http {
@ -15,13 +15,13 @@ http {
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log {{ nginx_access_log }} main;
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout {{ nginx_keepalive_timeout }};
types_hash_max_size {{ nginx_types_hash_max_size }};
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/conf.d/*.conf;
}