bitwarden部署与解决bitwarden浏览器插件登录失败问题
部署
docker run -d \
--name vaultwarden \
-e ADMIN_TOKEN=xxxxxxxxx\
-p 80:80 \
-p 3012:3012 \
-e SIGNUPS_ALLOWED=false \
-e WEB_VAULT_ENABLED=true \
-e ROCKET_LOG=debug \
-e EXTENDED_LOGGING=true \
-e DOMAIN=https://xxx.xxxx.xxxx\
-v /data/vaultwarden:/data \
--restart unless-stopped \
docker.io/vaultwarden/server:latest
解决bitwarden浏览器插件登录失败问题
:Cannot read properties of nul(reading ‘iterations‘)
修改nginx增加以下字段
location = /identity/accounts/prelogin {
rewrite ^/identity/accounts/prelogin$ /api/accounts/prelogin;
proxy_pass http://api:80/;
}
评论已关闭