From 33e757fedbdf59691f0cdc681e23e9c43db1369f Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Mon, 9 Feb 2026 09:48:24 -0600 Subject: [PATCH] Increase nginx client_max_body_size to 100G --- hosts/h001/containers/immich.nix | 2 +- hosts/oracle/o001/nginx.nix | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/h001/containers/immich.nix b/hosts/h001/containers/immich.nix index 98330ea1..05e2b9ce 100644 --- a/hosts/h001/containers/immich.nix +++ b/hosts/h001/containers/immich.nix @@ -96,7 +96,7 @@ in sslCertificate = "/var/lib/acme/joshuabell.xyz/fullchain.pem"; sslCertificateKey = "/var/lib/acme/joshuabell.xyz/key.pem"; extraConfig = '' - client_max_body_size 50G; + client_max_body_size 100G; proxy_read_timeout 600s; proxy_send_timeout 600s; send_timeout 600s; diff --git a/hosts/oracle/o001/nginx.nix b/hosts/oracle/o001/nginx.nix index 7c84197e..7b37516c 100644 --- a/hosts/oracle/o001/nginx.nix +++ b/hosts/oracle/o001/nginx.nix @@ -261,6 +261,9 @@ in locations."/" = { proxyWebsockets = true; proxyPass = "http://100.64.0.13"; + extraConfig = '' + client_max_body_size 50G; + ''; }; }; "photos.joshuabell.xyz" = { @@ -269,6 +272,9 @@ in locations."/" = { proxyWebsockets = true; proxyPass = "http://100.64.0.13"; + extraConfig = '' + client_max_body_size 100G; + ''; }; }; "llm.joshuabell.xyz" = {