- Introduced Caddy server for serving frontend and API backend. - Implemented admin dashboard for creating, editing, and managing events. - Replaced session-based authentication with token-based OAuth using Gitea. - Added support for drag-and-drop event reordering in the admin interface. - Standardized Fastify route validation with JSON schemas. - Enhanced authentication flow with cookie-based state and secure token storage. - Reworked backend routes to handle publishing, event management, and content updates. - Updated `Dockerfile.caddy` and `fly.toml` for deployment configuration.
53 lines
1.0 KiB
TOML
53 lines
1.0 KiB
TOML
app = "gallus-pub"
|
|
primary_region = "fra"
|
|
kill_signal = "SIGINT"
|
|
kill_timeout = 5
|
|
|
|
[build]
|
|
dockerfile = "Dockerfile.fly"
|
|
|
|
[env]
|
|
PORT = "3000" # Caddy (serves frontend + proxies /api/*)
|
|
NODE_ENV = "production"
|
|
BACKEND_PORT = "8080" # Fastify backend will listen here
|
|
DATABASE_PATH = "/app/data/gallus_cms.db"
|
|
GIT_WORKSPACE_DIR = "/app/workspace"
|
|
|
|
[http_service]
|
|
internal_port = 3000
|
|
force_https = true
|
|
auto_stop_machines = true
|
|
auto_start_machines = true
|
|
min_machines_running = 0
|
|
processes = ["app"]
|
|
|
|
[http_service.concurrency]
|
|
type = "connections"
|
|
hard_limit = 1000
|
|
soft_limit = 500
|
|
|
|
[[http_service.checks]]
|
|
interval = "30s"
|
|
timeout = "5s"
|
|
grace_period = "30s"
|
|
method = "GET"
|
|
path = "/"
|
|
protocol = "http"
|
|
tls_skip_verify = false
|
|
|
|
[metrics]
|
|
port = 9091
|
|
path = "/metrics"
|
|
|
|
[[vm]]
|
|
memory = "512MB"
|
|
cpu_kind = "shared"
|
|
cpus = 1
|
|
|
|
[[mounts]]
|
|
source = "gallus_data"
|
|
destination = "/app/data"
|
|
|
|
[[mounts]]
|
|
source = "gallus_workspace"
|
|
destination = "/app/workspace" |