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
zokiad 2018-04-18 23:44:15 +02:00 committed by Scott Addie
parent b4211576d9
commit b148747630
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ http {
#Redirects all traffic
location / {
proxy_pass http://hellomvc;
limit_req zone=one burst=10;
limit_req zone=one burst=10 nodelay;
}
}
}