feat:增加webdav代理

This commit is contained in:
2025-11-05 22:57:17 +08:00
parent e5969003a0
commit 72a7f8dfd0

View File

@@ -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/;
}