-
Notifications
You must be signed in to change notification settings - Fork 27
/
fly.toml
53 lines (43 loc) · 1.46 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
# See <https://fly.io/docs/reference/configuration>
app = "kzg-ceremony-sequencer-dev"
kill_signal = "SIGINT"
kill_timeout = 30 # Seconds
processes = []
[build]
image = "ethereum/kzg-ceremony-sequencer:latest"
[[mounts]]
source = "kzg_ceremony_sequencer_dev_data"
destination = "/data"
[env]
VERBOSE="3"
GH_REDIRECT_URL="https://kzg-ceremony-sequencer-dev.fly.dev/auth/callback/github"
ETH_REDIRECT_URL="https://kzg-ceremony-sequencer-dev.fly.dev/auth/callback/eth"
ETH_MIN_NONCE="0"
MULTI_CONTRIBUTION="true"
COMPUTE_DEADLINE="480"
LOBBY_CHECKIN_FREQUENCY="30"
LOBBY_CHECKIN_TOLERANCE="15"
# ❯ fly secrets list
# NAME DIGEST CREATED AT
# ETH_CLIENT_ID 7db86bc22f8eb264 2022-09-29T17:04:36Z
# ETH_CLIENT_SECRET c763b2cffa065b48 2022-09-29T17:05:16Z
# ETH_RPC_URL a8398a69ef7ec386 2022-09-23T15:29:47Z
# GH_CLIENT_ID 4d65ba30fd35bf64 2022-09-23T15:33:10Z
# GH_CLIENT_SECRET 8112a28c3c5544c1 2022-09-23T15:33:38Z
[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