about summary refs log tree commit diff stats
path: root/fly.toml
blob: 6e86e4a81c7d49ede9df91c8a738f63b9086d312 (plain)
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
# fly.toml app configuration file generated for homestead on 2023-09-14T11:40:37+02:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#

app = "alanpearce-eu"
primary_region = "ams"

[build]
  image = "registry.fly.io/alanpearce-eu"

[env]
  PORT = "80"
  REDIRECT_OTHER_HOSTNAMES = "true"
  BASE_URL = "https://alanpearce.eu"

  [[files]]
    guest_path = "/config.toml"
    local_path = "config.toml"

[metrics]
  port = 9091
  path = "/metrics"

[http_service]
  internal_port = 80
  force_https = true
  auto_stop_machines = false
  auto_start_machines = true
  min_machines_running = 3
  processes = [ "app" ]
  [http_service.concurrency]
    type = "requests"
    hard_limit = 20000
    soft_limit = 15000
  [http_service.http_options]
    h2_backend = true
    [http_service.http_options.response]
      pristine = true
  [[http_service.checks]]
    grace_period = "15s"
    interval = "30s"
    method = "GET"
    timeout = "1s"
    path = "/health"
    [http_service.checks.headers]
      Host = "fly-internal"