webupdate

This commit is contained in:
Local Server
2026-01-18 02:22:05 -06:00
parent 6fc159051a
commit 2a2a3d99e5
135 changed files with 54897 additions and 9825 deletions

View File

@@ -21,15 +21,15 @@ const HTTP_STATUS = {
const RATE_LIMITS = {
API: {
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100,
max: 1000, // Increased for production - 1000 requests per 15 minutes per IP
},
AUTH: {
windowMs: 15 * 60 * 1000, // 15 minutes
max: 50, // Increased from 5 to 50 for development
max: 5, // 5 failed attempts before lockout (successful requests are skipped)
},
UPLOAD: {
windowMs: 60 * 60 * 1000, // 1 hour
max: 50,
max: 100, // Increased for production
},
};