61a83cff65
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
18 lines
699 B
Properties
18 lines
699 B
Properties
# ─── Server ──────────────────────────────────────
|
|
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
|
|
|
|
# ─── Static resources (frontend SPA from META-INF/resources/) ──
|
|
quarkus.http.static-resources.enable=true
|
|
|
|
# ─── Data directory (game files, artwork) ────────
|
|
dostalgia.data.dir=/data
|