increase max body size for workout-sync

This commit is contained in:
Joakim Repomaa
2025-02-09 00:45:26 +02:00
parent f81f8b2a47
commit d078df43ad

View File

@@ -48,7 +48,12 @@ in
modules.services.webserver = { modules.services.webserver = {
enable = lib.mkDefault true; enable = lib.mkDefault true;
vHosts.${fqdn}.locations."/".proxyPort = port; vHosts.${fqdn}.locations."/" = {
proxyPort = port;
extraConfig = ''
client_max_body_size 50m;
'';
};
}; };
}; };
} }