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})$";