fix s3 proxy: forward host header for signature validation
Deploy nginx / deploy (push) Successful in 3s

This commit is contained in:
2026-03-19 21:55:37 -04:00
parent da99d102e9
commit f9788ff178
+3
View File
@@ -28,5 +28,8 @@ server {
location / { location / {
proxy_pass http://garage:3900; proxy_pass http://garage:3900;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
} }
} }