fix: increase max upload body size to 200MB
Build & Deploy / build-and-deploy (push) Successful in 46s

Quarkus defaults to 10MB max body size. DOS games like
Warcraft 2 (50-100MB) were silently rejected. Added:
- quarkus.http.limits.max-body-size=200M
- quarkus.resteasy-reactive.multipart.input-part.max-size=200M
This commit is contained in:
David Alvarez
2026-05-27 11:49:45 +02:00
parent 72391fb577
commit 61a83cff65
@@ -3,6 +3,10 @@ quarkus.http.port=8765
quarkus.http.host=0.0.0.0
quarkus.http.cors=true
# Allow large game uploads (DOS games can be 100MB+)
quarkus.http.limits.max-body-size=200M
quarkus.resteasy-reactive.multipart.input-part.max-size=200M
# ─── Jackson: snake_case to match frontend expectations ─
quarkus.jackson.property-naming-strategy=SNAKE_CASE