Add compose related nonsense and nginx configuration
All checks were successful
Build and Publish Docker Image / build (push) Successful in 21s

This commit is contained in:
2026-05-18 03:03:49 -06:00
parent 262dc70970
commit 85a1a66bf1
4 changed files with 101 additions and 0 deletions

8
nginx/rates.conf Normal file
View File

@@ -0,0 +1,8 @@
# 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;