fix: increase max upload body size to 200MB
Build & Deploy / build-and-deploy (push) Successful in 46s
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user