Increase default rate limit

This commit is contained in:
2024-11-10 20:56:04 +01:00
parent 29b35f6b91
commit d4c671caa7

View File

@@ -33,8 +33,8 @@ func DefaultConfig() *Config {
WorkDir: "./data",
StaticPath: "../frontend/dist",
Port: "8080",
RateLimitRequests: int(10),
RateLimitWindow: time.Minute,
RateLimitRequests: 100,
RateLimitWindow: time.Minute * 15,
IsDevelopment: false,
}
}