mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
reverse: add anti-flood protection
This commit is contained in:
parent
1effc7b627
commit
74b705ec58
@ -1,7 +1,7 @@
|
|||||||
#user web;
|
|
||||||
worker_processes auto;
|
worker_processes auto;
|
||||||
pid /nginx/run/nginx.pid;
|
pid /nginx/run/nginx.pid;
|
||||||
daemon off;
|
daemon off;
|
||||||
|
pcre_jit on;
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections 2048;
|
worker_connections 2048;
|
||||||
@ -9,6 +9,11 @@ events {
|
|||||||
}
|
}
|
||||||
|
|
||||||
http {
|
http {
|
||||||
|
limit_conn_zone $binary_remote_addr zone=limit_per_ip:10m;
|
||||||
|
limit_conn limit_per_ip 128;
|
||||||
|
limit_req_zone $binary_remote_addr zone=allips:10m rate=150r/s;
|
||||||
|
limit_req zone=allips burst=150 nodelay;
|
||||||
|
|
||||||
include /nginx/conf/mime.types;
|
include /nginx/conf/mime.types;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user