Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions templates/infra/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ http {
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_names_hash_bucket_size 128;

# Gzip compression
gzip on;
Expand Down
1 change: 1 addition & 0 deletions test/e2e/nginx/lua/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ http {

sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 128;

# Lua package path
lua_package_path "/etc/nginx/lua/?.lua;;";
Expand Down
1 change: 1 addition & 0 deletions test/e2e/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ http {

sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 128;

# Docker DNS resolver
resolver 127.0.0.11 valid=10s ipv6=off;
Expand Down
1 change: 1 addition & 0 deletions test/e2e/nginx/security/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ http {

sendfile on;
keepalive_timeout 65;
server_names_hash_bucket_size 128;

# Docker DNS resolver
resolver 127.0.0.11 valid=10s ipv6=off;
Expand Down
Loading