fix(webdav): Increase max upload size

- Fixes issue with Zotero sync
This commit is contained in:
2025-09-10 04:13:46 -06:00
parent 7ba6977d3a
commit 0c471a46f0

View File

@@ -98,6 +98,9 @@ in {
# See previous note regarding the HTTPS -> HTTP redirection. # See previous note regarding the HTTPS -> HTTP redirection.
proxy_set_header Destination $http_destination_webdav; proxy_set_header Destination $http_destination_webdav;
# Increase limit of upload sizes.
client_max_body_size 20G;
proxy_pass "http://localhost:${builtins.toString cfg.port}"; proxy_pass "http://localhost:${builtins.toString cfg.port}";
''; '';
}; };