What can lead to a zone memory exhaustion and how Nginx reacts to it?
- by Miles Hughes
What is a possible scenario for exhausting the memory designated to a connection zone with limit_conn_zone directive and what are the implication in this case?
Suppose I have this in my configuration:
http {
limit_conn_zone $binary_remote_addr zone=connzone:1m;
...
server {
limit_conn connzone 5;
which, according to the documentation,…