Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: turn off connection limiting #11571

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions dockerfiles/nginx-prod.conf
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ http {
client_max_body_size 20k;
large_client_header_buffers 2 20k;
# Limit connections
limit_conn addr 20;
limit_conn_status 429;
limit_conn_zone $binary_remote_addr zone=addr:5m;
#limit_conn addr 20;
#limit_conn_status 429;
#limit_conn_zone $binary_remote_addr zone=addr:5m;
# Disable sending server info and versions
server_tokens off;
more_clear_headers Server;
Expand Down