Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/531814eef06b601ca09cf680ab7e91ffa351baee?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
9 deletions
@ -31,9 +31,9 @@ apt-get -y purge openssh-{client,server} >/dev/null
apt-get autoremove >/dev/null
# Update container OS
msg "Updating container OS..."
# msg "Updating container OS..."
#apt-get update --allow-releaseinfo-change &>/dev/null
apt-get upgrade & >/dev/null
# apt-get upgrade &>/dev/null
# Install prerequisites
msg "Installing prerequisites..."
@ -43,13 +43,13 @@ apt-get -qqy install \
# Customize Docker configuration
# msg "Customizing Docker..."
DOCKER_CONFIG_PATH = '/etc/docker/daemon.json'
mkdir -p $( dirname $DOCKER_CONFIG_PATH )
cat > $DOCKER_CONFIG_PATH << 'EOF'
{
"log-driver" : "journald"
}
EOF
#DOCKER_CONFIG_PATH= '/etc/docker/daemon.json'
# mkdir -p $(dirname $DOCKER_CONFIG_PATH)
# cat >$DOCKER_CONFIG_PATH <<'EOF'
# {
# "log-driver": "journald"
# }
# EOF
# Customize container
msg "Customizing container..."
@ -66,6 +66,11 @@ EOF
systemctl daemon-reload
systemctl restart $( basename $( dirname $GETTY_OVERRIDE ) | sed 's/\.d//' )
# Update container OS
msg "Updating container OS..."
apt-get update >/dev/null
apt-get upgrade & >/dev/null
# Cleanup container
msg "Cleanup..."
rm -rf /debian11_setup.sh /var/{ cache,log} /* /var/lib/apt/lists/*