fix: correct nginx proxy port to Vaultwarden's port 80

This commit is contained in:
2026-04-02 15:25:56 +08:00
parent 4b7a1f2bcf
commit 11af6bf3f2
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ data:
# Forward all other requests to Vaultwarden
location / {
proxy_pass http://127.0.0.1:3000;
proxy_pass http://127.0.0.1:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;