feat: add webdav support to nginx configuration

This commit is contained in:
shiyu
2025-09-18 11:26:05 +08:00
parent f02c29492b
commit 0a06f4d02c

View File

@@ -28,7 +28,7 @@ http {
listen 80;
server_name _;
location ~ ^/(api|docs|openapi\.json$) {
location ~ ^/(api|webdav|docs|openapi\.json$) {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;