Vladimir Homutov
|
14ff3d4f87
|
Stream: connection limiting module.
stream {
limit_conn_zone $binary_remote_addr zone=perip:1m;
limit_conn_log_level error;
server {
...
limit_conn perip 1;
}
}
|
2015-06-18 14:17:30 +03:00 |
|
Vladimir Homutov
|
8ab1aa612d
|
Stream: access module.
stream {
server {
...
allow 127.0.0.1;
deny all;
}
}
|
2015-06-04 13:04:12 +03:00 |
|
Vladimir Homutov
|
df555ffce6
|
Core: the ngx_set_connection_log() macro.
The http and stream versions of this macro were identical.
|
2015-04-25 22:44:02 +03:00 |
|
Ruslan Ermilov
|
c799c82faa
|
Stream: port from NGINX+.
|
2015-04-20 13:05:11 +03:00 |
|