From 0a06f4d02c8d640539489675d3bbbd6e0d074a23 Mon Sep 17 00:00:00 2001 From: shiyu Date: Thu, 18 Sep 2025 11:26:05 +0800 Subject: [PATCH] feat: add webdav support to nginx configuration --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 272db13..f42e175 100644 --- a/nginx.conf +++ b/nginx.conf @@ -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;