Files
git.planetrenox.com/fly.toml
2025-09-11 00:38:08 -07:00

28 lines
613 B
TOML

app = "git-pr"
primary_region = "lax"
[build]
dockerfile = "Dockerfile"
[env]
GITEA__server__DOMAIN = "git-pr.fly.dev"
GITEA__server__ROOT_URL = "https://git-pr.fly.dev/"
GITEA__security__INTERNAL_TOKEN = "${GITEA_INTERNAL_TOKEN}"
GITEA__security__SECRET_KEY = "${GITEA_SECRET_KEY}"
GITEA__security__JWT_SECRET = "${GITEA_JWT_SECRET}"
[[mounts]]
source = "gitea_data"
destination = "/data"
[[services]]
internal_port = 3000
processes = ["app"]
protocol = "tcp"
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443