34 lines
490 B
TOML
34 lines
490 B
TOML
|
app = "xxx"
|
||
|
kill_signal = "SIGINT"
|
||
|
kill_timeout = 10
|
||
|
|
||
|
[env]
|
||
|
PORT = "8380"
|
||
|
|
||
|
[experimental]
|
||
|
cmd = "./mitra"
|
||
|
|
||
|
[[services]]
|
||
|
internal_port = 8380
|
||
|
protocol = "tcp"
|
||
|
|
||
|
[[services.ports]]
|
||
|
handlers = ["http"]
|
||
|
port = 80
|
||
|
|
||
|
[[services.ports]]
|
||
|
handlers = ["tls", "http"]
|
||
|
port = 443
|
||
|
|
||
|
# [[services.ports]]
|
||
|
# handlers = ["tls", "http"]
|
||
|
# port = 5001
|
||
|
#
|
||
|
# [[services.ports]]
|
||
|
# handlers = ["tls", "http"]
|
||
|
# port = 8001
|
||
|
|
||
|
[mounts]
|
||
|
source="mitra_data"
|
||
|
destination="/app/files"
|