~singpolyma/soapbox-fly

ref: e4962c2eb4a9c5bc2106c6926984b793edd2967d soapbox-fly/fly.toml -rw-r--r-- 820 bytes
e4962c2eStephen Paul Weber Hide local timeline 10 months ago
                                                                                
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
kill_signal = "SIGINT"
kill_timeout = 5
processes = []

[mounts]
  destination = "/data"
  source = "soapbox_data"

[metrics]
  port = 80
  path = "/api/pleroma/app_metrics"

[[services]]
  internal_port = 8080
  processes = ["app"]
  protocol = "tcp"
  script_checks = []

  [[services.http_checks]]
    grace_period = "25s"
    interval = "10s"
    method = "get"
    path = "/api/v1/pleroma/healthcheck"
    protocol = "http"
    restart_limit = 0
    timeout = "2s"
    tls_skip_verify = false

    [services.http_checks.headers]

  [[services.ports]]
    force_https = true
    handlers = ["http"]
    port = 80

  [[services.ports]]
    handlers = ["tls", "http"]
    port = 443

[[services]]
  internal_port = 2222
  processes = ["app"]
  protocol = "tcp"
  script_checks = []

  [[services.ports]]
    port = 22