nixos: services: mealie: fix bulk upload

This commit is contained in:
Bruno BELANYI 2024-03-22 22:03:32 +01:00
parent 4a01a50532
commit 61fa35093c
1 changed files with 7 additions and 0 deletions

View File

@ -66,6 +66,13 @@ in
my.services.nginx.virtualHosts = {
mealie = {
inherit (cfg) port;
extraConfig = {
# Allow bulk upload of recipes for import/export
locations."/".extraConfig = ''
client_max_body_size 0;
'';
};
};
};
};