Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/5841b20b1f32b56d11f467c819002a737603edfc?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
10 deletions
@ -25,18 +25,12 @@ msg_ok "Installed Dependencies"
msg_info "Installing Alpine-Vaultwarden"
$STD apk add vaultwarden
sed -i -e 's/# export ADMIN_TOKEN=.*/export ADMIN_TOKEN=' \' '' \' '/' -e '/^# export ROCKET_ADDRESS=0\.0\.0\.0/s/^# //' -e 's|export WEB_VAULT_ FOLDER=.*|export WEB_VAULT_FOLDER=/usr/share/webapps/vaultwarden-web/web-vault/|' -e 's|export WEB_VAULT_ ENABLED=.*|export WEB_VAULT_ENABLED=true|' /etc/conf.d/vaultwarden
sed -i -e 's/# export ADMIN_TOKEN=.*/export ADMIN_TOKEN=' \' '' \' '/' -e '/^# export ROCKET_ADDRESS=0\.0\.0\.0/s/^# //' -e 's|export WEB_VAULT_ ENABLED=.*|export WEB_VAULT_ENABLED=true|' /etc/conf.d/vaultwarden
msg_ok "Installed Alpine-Vaultwarden"
WEBVAULT = $( curl -s https://api.github.com/repos/dani-garcia/bw_web_builds/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }' )
curl -fsSLO https://github.com/dani-garcia/bw_web_builds/releases/download/$WEBVAULT /bw_web_$WEBVAULT .tar.gz
mkdir -p /usr/share/webapps/vaultwarden-web/
msg_info " Downloading Web-Vault ${ WEBVAULT } "
$STD curl -fsSLO https://github.com/dani-garcia/bw_web_builds/releases/download/$WEBVAULT /bw_web_$WEBVAULT .tar.gz
$STD tar -xzf bw_web_$WEBVAULT .tar.gz -C /usr/share/webapps/vaultwarden-web/
rm bw_web_$WEBVAULT .tar.gz
msg_ok " Downloaded Web-Vault ${ WEBVAULT } "
msg_info "Installing Web-Vault"
$STD apk add vaultwarden-web-vault
msg_ok "Installed Web-Vault"
msg_info "Starting Alpine-Vaultwarden"
$STD rc-service vaultwarden start