Files
Gallus_Pub/fly.toml
Kenzo 2f66a0af25
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Remove unused backend infrastructure and template files for Gallus CMS.
- Deleted `backend/.env.local`, admin page, and OAuth callback page.
- Removed legacy Docker configurations [`docker-compose.yml`, `Dockerfile.caddy`].
- Deprecated migration script, unused routes, and event/gallery migration documentation.
- Updated gitignore to reflect removed folder structure.
2025-12-09 17:20:39 +01:00

42 lines
712 B
TOML

app = "gallus-pub"
primary_region = "fra"
kill_signal = "SIGINT"
kill_timeout = 5
[build]
dockerfile = "Dockerfile"
[env]
PORT = "3000"
NODE_ENV = "production"
[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