From e6cbe708363d7a78d1a02d1fb657c18124901188 Mon Sep 17 00:00:00 2001 From: jfcheng Date: Sun, 22 Feb 2026 15:47:35 -0500 Subject: [PATCH] config: Change Vaultwarden port to 8020 to avoid conflicts --- vaultwarden/SETUP.md | 2 +- vaultwarden/docker-compose.portainer.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vaultwarden/SETUP.md b/vaultwarden/SETUP.md index 9bdc83a..74aa695 100644 --- a/vaultwarden/SETUP.md +++ b/vaultwarden/SETUP.md @@ -36,7 +36,7 @@ Vaultwarden is a lightweight, community-driven server implementation of the Bitw ### Deploy Stack - [ ] **Action**: Create a new stack named `vaultwarden-stack`. - [ ] **Action**: Paste the content of `docker-compose.portainer.yml` and deploy. -- [ ] **Verification**: Access the Vaultwarden Web UI at `http://[NAS_IP]:8080`. +- [ ] **Verification**: Access the Vaultwarden Web UI at `http://[NAS_IP]:8020`. ## 4. Post-Setup Security (Crucial) 1. **Create your account**: Navigate to the Web UI, click "Create Account", and register your master email and password. diff --git a/vaultwarden/docker-compose.portainer.yml b/vaultwarden/docker-compose.portainer.yml index b7603e5..5b14354 100644 --- a/vaultwarden/docker-compose.portainer.yml +++ b/vaultwarden/docker-compose.portainer.yml @@ -24,6 +24,6 @@ services: volumes: - /volume1/docker/vaultwarden/data:/data:rw ports: - - "8080:80" # Web UI + - "8020:80" # Web UI # Note: Vaultwarden integrates the WebSocket server into the main process in recent versions, # so exposing port 3012 is no longer required for typical setups unless using reverse proxy splitting.