nixos: services: tandoor-recipes: fix bulk upload
ci/woodpecker/push/check Pipeline was successful Details

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

View File

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