Add rate limiting environment variables to Dockerfile for enhanced configuration

This commit is contained in:
2025-12-27 20:09:23 -06:00
parent 0b7c15f2f0
commit 0765f47083

View File

@@ -53,6 +53,8 @@ ENV PORT=8080
ENV NODE_ENV=production
ENV AUTH_FILE=/app/data/accounts.json
ENV HASHES_FILE=/app/data/client_hashes.json
ENV RATE_LIMIT=100
ENV RATE_BURST=200
USER 65532