diff options
author | Alan Pearce | 2024-11-27 15:08:58 +0100 |
---|---|---|
committer | Alan Pearce | 2024-11-27 15:08:58 +0100 |
commit | 1bde2cfdb2a75563a5f264484d6d76d1deac5e56 (patch) | |
tree | c5a00a7bfec14c1de8ed32d07032608d10ebc636 /fly.toml | |
parent | 8ecb3549518646e39ec7df0079ae6cad3384271a (diff) | |
download | website-1bde2cfdb2a75563a5f264484d6d76d1deac5e56.tar.lz website-1bde2cfdb2a75563a5f264484d6d76d1deac5e56.tar.zst website-1bde2cfdb2a75563a5f264484d6d76d1deac5e56.zip |
Re-add health checks
Diffstat (limited to 'fly.toml')
-rw-r--r-- | fly.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fly.toml b/fly.toml index 024d3ef..8f08ac1 100644 --- a/fly.toml +++ b/fly.toml @@ -42,6 +42,15 @@ primary_region = "ams" type = "requests" soft_limit = 15000 + [[services.http_checks]] + grace_period = "10s" + protocol = "https" + tls_server_name = "alanpearce.eu" + interval = "10s" + method = "GET" + timeout = "1s" + path = "/health" + [[vm]] size = "shared-cpu-1x" |