Hello team,
I have deployed ownCloud Infinite Scale (OCIS) in a Kubernetes cluster using Helm. The service is up and running, and I can successfully upload files using web UI. I am doing some testing on file uploading using rclone with WebDAV requests. I can successfully upload small files using rclone with WebDAV but large file uploads (threshold value 8MB+) fail with the following error:
wsarecv: An existing connection was forcibly closed by the remote host.
What I Tried:
- Increased timeouts in Ingress
- proxy-body-size 25g
- rclone command modified like this → rclone copy “C:\Users\Downloads\rclonetest\10MB.txt” ocis-dev:spaces/{space_id}
–no-check-certificate -P -vv --timeout=7200s --contimeout=3600s --transfers=1 --disable-http2
Questions:
- Are there default upload size limits in OCIS WebDAV? If so, how can I check and modify them in a Kubernetes deployment?
- Do I need to explicitly set any env variables in the helm chart? If so, what values are recommended for large file uploads (e.g., 5GB+)?
- Could this be a reverse proxy (NGINX) buffering issue despite proxy-body-size 25g being set?
- Is there a way to enable chunked uploads in WebDAV with OCIS?
Any insights or solutions would be greatly appreciated!
Thank You