Топ 10 запрашиваемых URL nginx
Самые популярные пути из access log
awk '{print $7}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head -10
more nginx
all 15 commands →
Топ IP по числу запросов
awk '{print $1}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head -10
Блок rate limiting
limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s;
limit_req zone=api burst=20 nodelay;
Проксирование на upstream
upstream backend {
server 10.0.0.1:8080;
server 10.0.0.2:8080 backup;
keepalive 32;
}
Включить gzip
gzip on;
gzip_types text/plain text/css application/json application/javascript;
gzip_min_length 1024;
gzip_comp_level 6;
JSON ответ об ошибке
error_page 429 /429.json;
location = /429.json {
default_type application/json;
return 429 '{"error":"rate_limited"}';
}