Files
git.planetrenox.com/fly.toml
2025-09-11 00:29:13 -07:00

30 lines
637 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__mailer__ENABLED = "true"
GITEA__mailer__HOST = "${SMTP_HOST}"
GITEA__mailer__USER = "${SMTP_USER}"
GITEA__mailer__PASSWD = "${SMTP_PASSWD}"
GITEA__mailer__FROM = "${SMTP_FROM}"
[[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