Files
taco-blog/nginx/rates.conf
taco 85a1a66bf1
All checks were successful
Build and Publish Docker Image / build (push) Successful in 21s
Add compose related nonsense and nginx configuration
2026-05-18 03:03:49 -06:00

9 lines
274 B
Plaintext

# General request limit per IP
limit_req_zone $binary_remote_addr zone=general:10m rate=30r/s;
# Static asset scraping control
limit_req_zone $binary_remote_addr zone=static:10m rate=10r/s;
# API abuse protection
limit_req_zone $binary_remote_addr zone=api:10m rate=5r/s;