Yes! I finally found a fix after reviewing this awesome article:
https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms
I added this below my location block:
location = / {
limit_req zone=limit burst=3 nodelay;
}
And it catches the 'localhost' url!
Mods may close this!
https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms
I added this below my location block:
location = / {
limit_req zone=limit burst=3 nodelay;
}
And it catches the 'localhost' url!
Mods may close this!