Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/b733b451d83c91ca8be58d16ea2a476941f03159
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
4 deletions
@ -21,8 +21,9 @@ $STD apt-get install -y gnupg
msg_ok "Installed Dependencies"
msg_info "Setting up PostgreSQL Repository"
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
$STD apt-key add <( curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc)
VERSION = " $( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release) "
echo " deb http://apt.postgresql.org/pub/repos/apt ${ VERSION } -pgdg main " >/etc/apt/sources.list.d/pgdg.list
curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor --output /etc/apt/trusted.gpg.d/postgresql.gpg
msg_ok "Setup PostgreSQL Repository"
msg_info "Installing PostgreSQL"
@ -136,8 +137,8 @@ read -r -p "Would you like to add Adminer? <y/N> " prompt
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
msg_info "Installing Adminer"
$STD apt install -y adminer
$STD sudo a2enconf adminer
$STD systemctl reload apache2
$STD a2enconf adminer
systemctl reload apache2
msg_ok "Installed Adminer"
fi