VaultWarden: Difference between revisions

From FlowerHouseWiki
Line 50: Line 50:
== Sources ==
== Sources ==
* [https://gist.github.com/tavinus/59c314f4ccd70879db7f11074eacb6cc Bitwarden RS Debian 10 Install]
* [https://gist.github.com/tavinus/59c314f4ccd70879db7f11074eacb6cc Bitwarden RS Debian 10 Install]
* [https://nodejs.org/dist/latest/ Latest NodeJS]
* [https://github.com/dani-garcia/bw_web_builds WebVault]
* [https://github.com/dani-garcia/bw_web_builds WebVault]

Revision as of 18:38, 23 February 2021

Bitwarden.png

Network


IP: 192.168.88.??
MAC: B6:04:55:14:93:89
Domain: keys.flowerhouse.at

System


OS: Debian Buster
RAM: 512MB
Cores: 1
Privileged: No

The BitWarden-LXC is reachable under 192.168.88.?? which is located in the ServerVLAN.

The subdomain is keys.flowerhouse.at which is handled by the ReverseProxy.

Basic Setup

The original BitWarden-Server is only available with docker, this an alternative software programmed with rust.

Install the required packages:

apt install git nano curl wget htop pkg-config openssl libssl1.1 libssl-dev build-essential

Rust

Download script and follow installer:

curl https://sh.rustup.rs -sSf | sh

Create environment variable:

echo 'export PATH=~/.cargo/bin:$PATH' >> ~/.bashrc
export PATH=~/.cargo/bin:$PATH

After running following command:

which rustc

It should show the path:

/home/bitwarden/.cargo/bin/cargo

NodeJS

Download lateste NodeJS package:

wget https://nodejs.org/dist/latest-v9.x/node-v9.11.2-linux-x64.tar.xz

Sources