fix: raise upload limit from 200MB to 2048MB for large DOS games
Build & Deploy / build-and-deploy (push) Successful in 56s

The previous 200M limit on quarkus.http.limits.max-body-size and
multipart input-part.max-size rejected games over 200MB. DOS CD-ROM
games can easily exceed this (e.g. DOOM 95 full CD, Diablo). Raised
to 2048M to cover the largest DOS/CD-ROM game archives.
This commit is contained in:
David Alvarez
2026-05-28 09:32:33 +02:00
parent 5f5cb8411f
commit 6840b3eee1
+3 -3
View File
@@ -3,9 +3,9 @@ quarkus.http.port=8765
quarkus.http.host=0.0.0.0 quarkus.http.host=0.0.0.0
quarkus.http.cors=true quarkus.http.cors=true
# Allow large game uploads (DOS games can be 100MB+) # Allow large game uploads (DOS games can be 500MB+)
quarkus.http.limits.max-body-size=200M quarkus.http.limits.max-body-size=2048M
quarkus.resteasy-reactive.multipart.input-part.max-size=200M quarkus.resteasy-reactive.multipart.input-part.max-size=2048M
# ─── Jackson: snake_case to match frontend expectations ─ # ─── Jackson: snake_case to match frontend expectations ─
quarkus.jackson.property-naming-strategy=SNAKE_CASE quarkus.jackson.property-naming-strategy=SNAKE_CASE