fixup! nixos: services: add pdf-edit
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2024-08-23 00:07:28 +02:00
parent 0b70da3ac9
commit da971fa18d

View file

@ -43,6 +43,13 @@ in
my.services.nginx.virtualHosts = {
pdf-edit = {
inherit (cfg) port;
extraConfig = {
# Allow upload of PDF files up to 1G
locations."/".extraConfig = ''
client_max_body_size 1G;
'';
};
};
};