Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/598b2055f0ce1cfac07f5a7fa4a76a399c7833da?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
3 deletions
@ -100,9 +100,19 @@ file target/release/vaultwarden &>/dev/null
echo -e " ${ CM } ${ CL } \r "
echo -e " ${ CM } ${ CL } \r "
echo -en " ${ GN } Building Web-Vault... "
echo -en " ${ GN } Building Web-Vault... "
wget https://github.com/dani-garcia/bw_web_builds/releases/download/$VWRELEASE /bw_web_$VWRELEASE .tar.gz & >/dev/null
pushd target/release/ & >/dev/null
tar -xzf bw_web_$VWRELEASE .tar.gz & >/dev/null
git clone --recurse-submodules https://github.com/bitwarden/web.git web-vault.git & >/dev/null
cp -R web-vault /var/lib/vaultwarden/ & >/dev/null
cd web-vault.git & >/dev/null
git checkout v2.25.1 & >/dev/null
git submodule update --init --recursive & >/dev/null
wget https://raw.githubusercontent.com/dani-garcia/bw_web_builds/master/patches/v2.25.0.patch & >/dev/null
git apply v2.25.0.patch & >/dev/null
npm ci --silent --legacy-peer-deps & >/dev/null
npm audit fix --silent --legacy-peer-deps || true & >/dev/null
npm run --silent dist:oss:selfhost & >/dev/null
cp -a build ../web-vault & >/dev/null
cd ..
mkdir data
echo -e " ${ CM } ${ CL } \r "
echo -e " ${ CM } ${ CL } \r "
echo -en " ${ GN } Create Systemd Service... "
echo -en " ${ GN } Create Systemd Service... "