lite-rpc/fly.toml

32 lines
508 B
TOML
Raw Normal View History

2023-01-13 11:23:53 -08:00
app = "solana-lite-rpc"
kill_signal = "SIGINT"
kill_timeout = 5
[env]
PORT_HTTP = "8890"
PORT_WS = "8891"
2023-01-13 11:23:53 -08:00
[[services]]
internal_port = 9000
processes = ["app"]
protocol = "tcp"
[services.concurrency]
hard_limit = 1024
soft_limit = 1024
type = "connections"
[[services]]
internal_port = 9001
processes = ["app"]
protocol = "tcp"
[services.concurrency]
hard_limit = 1024
soft_limit = 1024
type = "connections"
2023-01-13 11:25:24 -08:00
# [metrics]
# path = "/metrics"
# port = 9091