From 665dc162397505dfcba46e56d4fdbf4af7a475b6 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Thu, 18 Mar 2021 23:50:54 +0000 Subject: [PATCH] etheroute-lon01: bump timeout, which is just 'timeout' --- ops/nixos/etheroute-lon01/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ops/nixos/etheroute-lon01/default.nix b/ops/nixos/etheroute-lon01/default.nix index bb245645f3..37f1cf2eef 100644 --- a/ops/nixos/etheroute-lon01/default.nix +++ b/ops/nixos/etheroute-lon01/default.nix @@ -206,9 +206,7 @@ in { baseConfig = { allowed_domains = [ "lukegb.com" ]; pass_identity_headers = true; - timeout_read = "30s"; - timeout_write = "0"; - timeout_idle = "5m"; + timeout = "30s"; }; service = server: hostName: extraConfig: baseConfig // { from = "https://${hostName}"; @@ -235,10 +233,10 @@ in { (secureService "swann:8443" "unifi.int.lukegb.com" { tls_skip_verify = true; allow_websockets = true; - timeout_read = "0"; + timeout = "0"; }) (service "blade-tuvok:7480" "objdump.zxcvbnm.ninja" (public { - timeout_read = "30m"; # Uploads can take a while; bump the timeout. + timeout = "30m"; # Uploads can take a while; bump the timeout. })) (secureService "totoro" "invoices.lukegb.com" (public { regex = "^/((third_party|ajax|client_area|pdf)/.*|[a-zA-Z0-9]{8})$";