wip
This commit is contained in:
parent
adffe23940
commit
9d4eb5d048
1 changed files with 9 additions and 10 deletions
|
|
@ -119,25 +119,24 @@
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:8082/"; # pass through to webdav
|
proxyPass = "http://127.0.0.1:8082/"; # pass through to webdav
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# WebDAV-specific settings
|
# Pass required headers for WebDAV
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
|
||||||
|
# Pass Authorization header if required
|
||||||
proxy_set_header Authorization $http_authorization;
|
proxy_set_header Authorization $http_authorization;
|
||||||
|
|
||||||
# Timeout for large file uploads/downloads
|
# Set timeouts for large file uploads or long WebDAV operations
|
||||||
proxy_read_timeout 300;
|
proxy_read_timeout 300;
|
||||||
proxy_connect_timeout 300;
|
proxy_connect_timeout 300;
|
||||||
proxy_send_timeout 300;
|
proxy_send_timeout 300;
|
||||||
|
|
||||||
# Allow WebDAV methods
|
# Increase client body size for large uploads
|
||||||
proxy_methods GET POST PUT DELETE OPTIONS PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK;
|
|
||||||
|
|
||||||
# Client upload size
|
|
||||||
client_max_body_size 100M;
|
client_max_body_size 100M;
|
||||||
|
|
||||||
# Optional: Disable caching if issues arise
|
# Optional: Disable caching for WebDAV operations
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
proxy_cache off;
|
proxy_cache off;
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue