24 lines
446 B
TOML
24 lines
446 B
TOML
app = "postconvert"
|
|
|
|
primary_region = "sjc"
|
|
|
|
[build]
|
|
dockerfile = "Dockerfile"
|
|
|
|
[http_service]
|
|
internal_port = 8080
|
|
force_https = true
|
|
auto_start_machines = true
|
|
auto_stop_machines = true
|
|
min_machines_running = 0
|
|
max_machines_running = 1
|
|
concurrency = { soft_limit = 1, hard_limit = 1 }
|
|
grace_period = "30s"
|
|
|
|
[[http_service.checks]]
|
|
grace_period = "10s"
|
|
interval = "15s"
|
|
method = "GET"
|
|
path = "/health"
|
|
timeout = "2s"
|