1 2 3 4 5 6
| url: https://github.com/dani-garcia/vaultwarden/discussions/4664 title: "Missing Icons · dani-garcia/vaultwarden · Discussion #4664" description: "Deployment environment Your environment (Generated via diagnostics page) Vaultwarden version: v1.30.5 Web-vault version: v2024.1.2b OS/Arch: linux/x86_64 Running within a container: true (Base: Deb..." host: github.com favicon: https://github.githubassets.com/favicons/favicon.svg image: https://opengraph.githubassets.com/621640ceaff12b91c056267da259ab5dafcfd0a8930c1b0bccf78a827cac35a6/dani-garcia/vaultwarden/discussions/4664
|
1 2 3 4 5
| url: https://host.ppgg.in/deploying-and-using-of-vaultwarden/configuration#about-configuration title: "配置 | Bitwarden 部署和使用" host: host.ppgg.in favicon: https://1098296495-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/spaces%2F-MGNKm8ywtCheKTpUjpY%2Favatar-1603889553012.png?generation=1603889553284125&alt=media image: https://host.ppgg.in/~gitbook/ogimage/-MJKdUsLbd4wL7RVzAOa
|
VaultWarden 的网站图标功能很不好用 - VPS专版 - TGL论坛 - 中文顶尖的英文站长社区
“icon_service”: “https://api.faviconkit.com/{}/32“,
1 2 3 4 5
| url: https://help.ppgg.in/password-manager/developer-tools/ssh-agent title: "SSH 代理 | Bitwarden 帮助中心中文版" host: help.ppgg.in favicon: https://463484399-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/spaces%2F-M2XqgFI6fAcTD0lL3MZ%2Favatar-1584637381575.png?generation=1584637382149328&alt=media image: https://help.ppgg.in/~gitbook/ogimage/5LxzQXM3wbKDRshTsqkF
|
1 2 3 4 5
| url: https://rs.ppgg.in/ title: "关于 | Vaultwarden Wiki 中文版" host: rs.ppgg.in favicon: https://551209699-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/spaces%2F-M2Yi-lp0fd1uaijcnF_%2Favatar-1584637417236.png?generation=1584637417496173&alt=media image: https://rs.ppgg.in/~gitbook/ogimage/-M2Yi65qaGLbd7hLATDg
|
vaultwarden更新
1 2 3 4 5 6 7 8 9 10 11
| cd /root/myapp/Vaultwarden
# 拉取最新版本的镜像 docker pull vaultwarden/server:latest
# 停止并移除旧版本容器 docker stop vaultwarden docker rm vaultwarden
# 使用已挂载的数据启动容器 docker run -d --name vaultwarden -v ./vw_data/:/data/ -p 7659:80 vaultwarden/server:latest
|
其它
环境变量修改后
1
| docker compose down && docker compose up -d
|
1 2 3 4 5 6
| "push_enabled": true, "push_identity_uri": "https://identity.bitwarden.com", "push_installation_id": "xxxxx", "push_installation_key": "xxxxxx", "push_relay_uri": "https://push.bitwarden.com", "experimental_client_feature_flags": "fido2-vault-credentials,ssh-key-vault-item,ssh-agent"
|
我的环境变量
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| TZ=Asia/Shanghai
ADMIN_TOKEN='XXXX'
LOG_FILE=/data/vaultwarden.log
LOG_LEVEL=warn
SHOW_PASSWORD_HINT=false
PUSH_ENABLED=true PUSH_INSTALLATION_ID=XXXXXX PUSH_INSTALLATION_KEY=XXXXXXXX
PUSH_RELAY_URI=https://push.bitwarden.com PUSH_IDENTITY_URI=https://identity.bitwarden.com
EXPERIMENTAL_CLIENT_FEATURE_FLAGS=ssh-key-vault-item,ssh-agent,fido2-vault-credentials,browser-fileless-import,inline-menu-positioning-improvements,autofill-overlay
|