diff --git a/nginx.conf b/nginx.conf index 41631f2..ff6ec58 100644 --- a/nginx.conf +++ b/nginx.conf @@ -66,6 +66,14 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } + location /webdav/ { + proxy_pass http://host.docker.internal:5005/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + location /home-api/ { proxy_pass http://host.docker.internal:8081/; }