Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/c65bd939eb0722538e6d252a89f2cd7a3da17917?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
15 additions and
4 deletions
@ -107,12 +107,23 @@ function update_script() {
exit
fi
if [ " $UPD " = = "3" ] ; then
read -r -p "Would you like to use No Authentication? <y/N> " prompt
msg_info "Installing FileBrowser"
RELEASE = $( curl -fsSL https://api.github.com/repos/filebrowser/filebrowser/releases/latest | grep -o '"tag_name": ".*"' | sed 's/"//g' | sed 's/tag_name: //g' )
curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/v2.23.0/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin & >/dev/null
filebrowser config init -a '0.0.0.0' & >/dev/null
filebrowser config set -a '0.0.0.0' & >/dev/null
filebrowser users add admin changeme --perm.admin & >/dev/null
curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/$RELEASE /linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin & >/dev/null
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
filebrowser config init -a '0.0.0.0' & >/dev/null
filebrowser config set -a '0.0.0.0' & >/dev/null
filebrowser config init --auth.method= noauth & >/dev/null
filebrowser config set --auth.method= noauth & >/dev/null
filebrowser users add ID 1 --perm.admin & >/dev/null
else
filebrowser config init -a '0.0.0.0' & >/dev/null
filebrowser config set -a '0.0.0.0' & >/dev/null
filebrowser users add admin changeme --perm.admin & >/dev/null
fi
fi
msg_ok "Installed FileBrowser"
msg_info "Creating Service"