-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfly.toml
80 lines (65 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# fly.toml app configuration file generated for giveip-io on 2023-04-26T19:25:39Z
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "giveip-io"
primary_region = "den"
kill_signal = "SIGINT"
kill_timeout = "5s"
[experimental]
auto_rollback = true
[env]
CLIENT_IP_HEADER = "Fly-Client-IP"
ROOT_DNS_NAME = "giveip.io"
DESCRIPTION = "A simple, fast website to return your IPv4 and IPv6 addresses. No logs are kept. Free and open to all."
[build]
image = "ghcr.io/randomairborne/giveip:latest"
[[services]]
protocol = "tcp"
internal_port = 8080
processes = ["app"]
[[services.ports]]
port = 80
handlers = ["http"]
[[services.ports]]
port = 443
handlers = ["tls", "http"]
[services.concurrency]
type = "connections"
hard_limit = 2500
soft_limit = 2000
[[services.http_checks]]
interval = 10000
grace_period = "5s"
path = "/"
protocol = "http"
timeout = 2000
headers = { Fly-Client-IP = "::1.1.1.1", Accept = "text/html" }
[[services.http_checks]]
interval = 10000
grace_period = "5s"
path = "/"
protocol = "http"
timeout = 2000
headers = { Fly-Client-IP = "1.1.1.1" }
[[services.http_checks]]
interval = 10000
grace_period = "5s"
path = "/raw"
protocol = "http"
timeout = 2000
headers = { Fly-Client-IP = "1.1.1.1" }
[[services.http_checks]]
interval = 10000
grace_period = "5s"
path = "/"
protocol = "http"
timeout = 2000
headers = { Fly-Client-IP = "::1.1.1.1" }
[[services.http_checks]]
interval = 10000
grace_period = "5s"
path = "/raw"
protocol = "http"
timeout = 2000
headers = { Fly-Client-IP = "::1.1.1.1" }