forked from ethereum/kzg-ceremony-sequencer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fly.toml
42 lines (33 loc) · 953 Bytes
/
fly.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# See <https://fly.io/docs/reference/configuration>
app = "kzg-ceremony-sequencer-dev"
kill_signal = "SIGINT"
kill_timeout = 30 # Seconds
processes = []
[build]
image = "remcob/kzg-ceremony-sequencer:latest"
[[mounts]]
source = "kzg_ceremony_sequencer_dev_data"
destination = "/data"
# Secrets
# - ETH_RPC_URL (i.e. Alchemy)
# - GH_CLIENT_ID (Register at <https://github.com/settings/applications/new>)
# - GH_CLIENT_SECRET
# - ETH_CLIENT_ID (Register at <https://etherscan.io/myapikey>)
# - ETH_CLIENT_SECRET
[experimental]
allowed_public_ports = []
auto_rollback = true
[metrics]
# Prometheus metrics server. See PROMETHEUS env var.
port = 9998
path = "/metrics"
[[services]]
internal_port = 8080
protocol = "tcp"
[[services.ports]]
force_https = true
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443