media-gen-api / fly.toml
ogeti siva satyanarayana
Create fly.toml
e52d92f
raw
history blame contribute delete
415 Bytes
app = "media-gen-api"
[build]
image = "tiangolo/uvicorn-gunicorn-fastapi:python3.10"
[env]
PYTHONUNBUFFERED = "1"
[[services]]
internal_port = 80
protocol = "tcp"
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services.tcp_checks]]
interval = "15s"
timeout = "2s"
grace_period = "5s"
restart_limit = 0