vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 39167d333ad752af26e7cb9cb6154534e91634c3
parent f707f86c8e50c16898b971633f38b131d6242e35
Author: Olivier Martin <olivier.martin@illogika.com>
Date:   Sat,  1 May 2021 12:35:58 -0400

Merge commit '0d631329873196935ba29db985c5e32def391251' into 2fa_enforcement

Diffstat:
M.github/ISSUE_TEMPLATE/config.yml | 4++--
MREADME.md | 6++++--
Msrc/main.rs | 2+-
Msrc/static/templates/admin/diagnostics.hbs | 2+-
4 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: false contact_links: - - name: Discourse forum for bitwarden_rs - url: https://bitwardenrs.discourse.group/ + - name: Discourse forum for vaultwarden + url: https://vaultwarden.discourse.group/ about: Use this forum to request features or get help with usage/configuration. - name: GitHub Discussions for vaultwarden url: https://github.com/dani-garcia/vaultwarden/discussions diff --git a/README.md b/README.md @@ -1,8 +1,10 @@ ### Alternative implementation of the Bitwarden server API written in Rust and compatible with [upstream Bitwarden clients](https://bitwarden.com/#download)*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal. +📢 Note: This project was known as Bitwarden_RS and has been renamed to separate itself from the official Bitwarden server in the hopes of avoiding confusion and trademark/branding issues. Please see [#1642](https://github.com/dani-garcia/vaultwarden/discussions/1642) for more explanation. + --- -[![Docker Pulls](https://img.shields.io/docker/pulls/bitwardenrs/server.svg)](https://hub.docker.com/r/vaultwarden/server) +[![Docker Pulls](https://img.shields.io/docker/pulls/vaultwarden/server.svg)](https://hub.docker.com/r/vaultwarden/server) [![Dependency Status](https://deps.rs/repo/github/dani-garcia/vaultwarden/status.svg)](https://deps.rs/repo/github/dani-garcia/vaultwarden) [![GitHub Release](https://img.shields.io/github/release/dani-garcia/vaultwarden.svg)](https://github.com/dani-garcia/vaultwarden/releases/latest) [![GPL-3.0 Licensed](https://img.shields.io/github/license/dani-garcia/vaultwarden.svg)](https://github.com/dani-garcia/vaultwarden/blob/master/LICENSE.txt) @@ -35,7 +37,7 @@ Pull the docker image and mount a volume from the host for persistent storage: docker pull vaultwarden/server:latest docker run -d --name vaultwarden -v /vw-data/:/data/ -p 80:80 vaultwarden/server:latest ``` -This will preserve any persistent data under /bw-data/, you can adapt the path to whatever suits you. +This will preserve any persistent data under /vw-data/, you can adapt the path to whatever suits you. **IMPORTANT**: Some web browsers, like Chrome, disallow the use of Web Crypto APIs in insecure contexts. In this case, you might get an error like `Cannot read property 'importKey'`. To solve this problem, you need to access the web vault from HTTPS. diff --git a/src/main.rs b/src/main.rs @@ -100,7 +100,7 @@ fn launch_info() { println!("| This is an *unofficial* Bitwarden implementation, DO NOT use the |"); println!("| official channels to report bugs/features, regardless of client. |"); println!("| Send usage/configuration questions or feature requests to: |"); - println!("| https://bitwardenrs.discourse.group/ |"); + println!("| https://vaultwarden.discourse.group/ |"); println!("| Report suspected bugs/issues in the software itself at: |"); println!("| https://github.com/dani-garcia/vaultwarden/issues/new |"); println!("\\--------------------------------------------------------------------/\n"); diff --git a/src/static/templates/admin/diagnostics.hbs b/src/static/templates/admin/diagnostics.hbs @@ -159,7 +159,7 @@ <dl class="row"> <dd class="col-sm-12"> If you need support please check the following links first before you create a new issue: - <a href="https://bitwardenrs.discourse.group/" target="_blank" rel="noreferrer">Vaultwarden Forum</a> + <a href="https://vaultwarden.discourse.group/" target="_blank" rel="noreferrer">Vaultwarden Forum</a> | <a href="https://github.com/dani-garcia/vaultwarden/discussions" target="_blank" rel="noreferrer">Github Discussions</a> </dd> </dl>