背景
Bitwarden 是一个类似 1Password
和 LastPass
的开源密码管理软件,Bitwarden RS 是基于 Rust 语言的一个实现,更轻量一些,可能效率也会更高一点点,并且是完全兼容官方 App 的,比如各种浏览器扩展,手机 App 等。[ 摘抄 ]
不想折腾可以直接官网注册使用即可,网速有点慢
准备工作
- 一台公网 linux 服务器( Ubuntu / Centos )
- docker 域名和证书
- 可以通过腾讯云购买服务器和域名并申请免费证书
安装 Docker
1 | curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun |
修改配置文件
1 | { |
1 | # 下面这段长长的字符就是上面的内容编码后的内容,执行下面这个命令即可 |
申请 ssl 证书
具体步骤请查阅这两篇文章
设置保存路径
1 | mkdir -p bitwarden/data bitwarden/ssl |
创建用户账号
1 | docker run -it --rm \ |
使用浏览器访问 http://[服务器 IP]:25003
最好配置一下邮箱服务端,qq邮箱可以参考这篇文章,两步推荐也最好弄一下,避免账号登录不上去
下载浏览器插件和软件
网速不好可以 百度问题原因
以上的都配置完毕后,开始配置安全选项
安全配置
禁用注册功能
禁用网页登陆功能
1 | docker stop bitwarden |
1 | docker run -it -d \ |
1 | { |
请将上面的内容修改并保存到 当前目录/bitwarden/data/config.json
全部的配置文件
小结
与官方托管对比
优势:
- 可以使用一些付费功能
- 密码在自己服务器上
劣势:
- 因为数据在自己服务器上,对服务器的安全性运维也相应提高
- 部署也没那么容易,需要一定的专业知识
个人总结:
- bitwarden 的 密码和两步验证的密码 保存到支付宝安全备忘,防止忘记
- 定时备份
- 最好关闭网页访问,防止黑客爆破密码
XRSec has the right to modify and interpret this article. If you want to reprint or disseminate this article, you must ensure the integrity of this article, including all contents such as copyright notice. Without the permission of the author, the content of this article shall not be modified or increased or decreased arbitrarily, and it shall not be used for commercial purposes in any way
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 XR-SEC!