From f7dfd9dbdb1e48a1b4c03f175b7cac060e9e608e Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Fri, 6 Jun 2025 12:29:41 +0000 Subject: [PATCH] manatee: Bump upload limit for `calibre-web` --- hosts/manatee/modules/calibre-web/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/manatee/modules/calibre-web/default.nix b/hosts/manatee/modules/calibre-web/default.nix index c69b968..c36b69d 100644 --- a/hosts/manatee/modules/calibre-web/default.nix +++ b/hosts/manatee/modules/calibre-web/default.nix @@ -33,6 +33,10 @@ in nginx = { virtualHosts."books.ppp.pm" = { + extraConfig = '' + client_max_body_size 1024M; + ''; + locations."/" = { proxyPass = "http://0.0.0.0:8083"; # TODO add option for port + host };