Some prebuild fix

This commit is contained in:
IgorVolochay
2026-09-08 09:43:49 +03:00
parent 9fb4fc15b9
commit 8d8361ab8f
3 changed files with 6 additions and 5 deletions
+3 -3
View File
@@ -61,14 +61,14 @@ app: FastAPI = FastAPI(
)
config = SecurityConfig(
enable_rate_limiting=True,
rate_limit=10, # TODO: check rate limits in real usage
rate_limit_window=3, # TODO: check rate limits in real usage
rate_limit=10,
rate_limit_window=3,
enable_redis=False,
enable_ip_banning=True,
enable_penetration_detection=True,
auto_ban_threshold=3,
auto_ban_duration=3600,
auto_ban_duration=600,
detection_compiler_timeout=2.0,
detection_max_content_length=10000,