Update nginx.conf (#6025)
Performance issue. Add nodelay to avoid nginx to wait to be forward https://www.nginx.com/blog/rate-limiting-nginx/pull/6034/head
parent
b4211576d9
commit
b148747630
|
@ -38,7 +38,7 @@ http {
|
||||||
#Redirects all traffic
|
#Redirects all traffic
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://hellomvc;
|
proxy_pass http://hellomvc;
|
||||||
limit_req zone=one burst=10;
|
limit_req zone=one burst=10 nodelay;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue