17 lines
639 B
Properties
17 lines
639 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 500MB+)
|
|
quarkus.http.limits.max-body-size=2048M
|
|
|
|
# ─── 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
|