29 lines
467 B
TOML
29 lines
467 B
TOML
app = 'gallus-pub'
|
|
primary_region = 'fra'
|
|
|
|
[experimental]
|
|
auto_rollback = true
|
|
|
|
[build]
|
|
dockerfile = 'Dockerfile'
|
|
|
|
[http_service]
|
|
internal_port = 80
|
|
force_https = true
|
|
auto_stop_machines = 'stop'
|
|
auto_start_machines = true
|
|
min_machines_running = 0
|
|
processes = ['app']
|
|
|
|
[[http_service.checks]]
|
|
interval = '10s'
|
|
timeout = '2s'
|
|
grace_period = '5s'
|
|
method = 'GET'
|
|
path = '/'
|
|
|
|
[[vm]]
|
|
memory = '1gb'
|
|
cpu_kind = 'shared'
|
|
cpus = 1
|