Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/1e5d1381602ddb3d1261d095b03eb7162143b67e?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
3 deletions
@ -59,9 +59,10 @@ done
msg_ok "Set up Container OS"
msg_ok "Set up Container OS"
msg_ok " Network Connected: ${ BL } $( hostname -I) "
msg_ok " Network Connected: ${ BL } $( hostname -I) "
if nc -zw1 8.8.8.8 443; then msg_ok "Internet Connected" ; else msg_error "Internet NOT Connected" ; fi ;
if nc -zw1 8.8.8.8 443; then msg_ok "Internet Connected" ; IC = "YES" ; else msg_error "Internet NOT Connected" ; IC = "NO" ; fi ;
RESOLVEDIP = $( nslookup "github.com" | awk -F':' '/^Address: / { matched = 1 } matched { print $2}' | xargs)
if [ [ ${ IC } = = "YES" ] ] ; then RESOLVEDIP = $( nslookup "github.com" | awk -F':' '/^Address: / { matched = 1 } matched { print $2}' | xargs)
if [ [ -z " $RESOLVEDIP " ] ] ; then msg_error "DNS Lookup Failure" ; else msg_ok " DNS Resolved github.com to $RESOLVEDIP " ; fi ;
if [ [ -z " $RESOLVEDIP " ] ] ; then msg_error "DNS Lookup Failure" ; else msg_ok " DNS Resolved github.com to $RESOLVEDIP " ; fi ;
fi
msg_info "Updating Container OS"
msg_info "Updating Container OS"
apt-get update & >/dev/null
apt-get update & >/dev/null