Undo nginx rate-limiting.
This commit is contained in:
parent
99bd16a69c
commit
a68bad1c3a
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ proxy_set_header Transfer-Encoding $http_transfer_encoding;
|
|||
location / {
|
||||
proxy_pass http://web_app_server;
|
||||
|
||||
limit_req zone=webapp burst=10 nodelay;
|
||||
#limit_req zone=webapp burst=10 nodelay;
|
||||
}
|
||||
|
||||
location /realtime {
|
||||
|
@ -42,7 +42,7 @@ location /v1/ {
|
|||
|
||||
client_max_body_size 20G;
|
||||
|
||||
limit_req zone=api burst=5 nodelay;
|
||||
#limit_req zone=api burst=5 nodelay;
|
||||
}
|
||||
|
||||
location /c1/ {
|
||||
|
@ -54,7 +54,7 @@ location /c1/ {
|
|||
proxy_read_timeout 2000;
|
||||
proxy_temp_path /var/log/nginx/proxy_temp 1 2;
|
||||
|
||||
limit_req zone=api burst=5 nodelay;
|
||||
#limit_req zone=api burst=5 nodelay;
|
||||
}
|
||||
|
||||
location /static/ {
|
||||
|
|
Reference in a new issue