Update nginx/nginx.conf

This commit is contained in:
fernao 2023-09-25 13:39:15 -03:00
parent 68e9f5900b
commit 38ffe99477
1 changed files with 3 additions and 4 deletions

View File

@ -11,15 +11,14 @@ http {
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
types_hash_bucket_size 128;
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/extra/headers-gzip.conf;
include /etc/nginx/mime.types;
include /etc/nginx/mime.types;
include /etc/nginx/sites-enabled/*;
}