all repos — homestead @ 4542651982635187ca7675cfde116151f86da438

Code for my website

Add HTTP health check

Alan Pearce
commit

4542651982635187ca7675cfde116151f86da438

parent

b1d7005b034ac62dc850377155520a68a018e24e

1 file changed, 11 insertions(+), 0 deletions(-)

jump to
M fly.tomlfly.toml
@@ -25,3 +25,14 @@ [[services.ports]]
handlers = ["tls"] port = "443" tls_options = { "alpn" = ["h2"] } + [[services.http_checks]] + interval = 10000 + grace_period = "5s" + method = "get" + path = "/" + protocol = "http" + restart_limit = 0 + timeout = 2000 + tls_skip_verify = false + [services.http_checks.headers] + Host = "alanpearce.eu"