feat: add S3 endpoint to Nginx configuration

This commit is contained in:
shiyu
2025-11-08 22:44:09 +08:00
parent 3a15362422
commit 583db651a7

View File

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