41 lines
737 B
TOML
41 lines
737 B
TOML
app = "mango-geyser-services"
|
|
|
|
kill_signal = "SIGINT"
|
|
kill_timeout = 5
|
|
|
|
[processes]
|
|
fills = "service-mango-fills fills-config.toml"
|
|
orderbook = "service-mango-orderbook orderbook-config.toml"
|
|
|
|
[[services]]
|
|
processes = ["fills"]
|
|
internal_port = 8080
|
|
protocol = "tcp"
|
|
|
|
[[services.ports]]
|
|
handlers = ["tls", "http"]
|
|
port = "8080"
|
|
|
|
[services.concurrency]
|
|
type = "connections"
|
|
hard_limit = 1024
|
|
soft_limit = 1024
|
|
|
|
[[services]]
|
|
processes = ["orderbook"]
|
|
internal_port = 8082
|
|
protocol = "tcp"
|
|
|
|
[[services.ports]]
|
|
handlers = ["tls", "http"]
|
|
port = "8082"
|
|
|
|
[services.concurrency]
|
|
type = "connections"
|
|
hard_limit = 1024
|
|
soft_limit = 1024
|
|
|
|
[metrics]
|
|
port = 9091
|
|
path = "/metrics"
|