Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/a35e23916edf998dac5565fbaf67c6348dff7b2b?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
1 deletions
@ -21,7 +21,7 @@ $STD apt-get install -y gpg
$STD apt-get install -y apt-transport-https
$STD apt-get install -y apt-transport-https
msg_ok "Installed Dependencies"
msg_ok "Installed Dependencies"
RELEASE = 3.0.4 #$(curl -s https://api.github.com/repos/traefik/traefik/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }' )
RELEASE = $( curl -s https://api.github.com/repos/traefik/traefik/releases | grep -oP '"tag_name":\s*"v\K[\d.]+?(?=")' | sort -V | tail -n 1 )
msg_info " Installing Traefik v ${ RELEASE } "
msg_info " Installing Traefik v ${ RELEASE } "
mkdir -p /etc/traefik/{ conf.d,ssl}
mkdir -p /etc/traefik/{ conf.d,ssl}
wget -q https://github.com/traefik/traefik/releases/download/v${ RELEASE } /traefik_v${ RELEASE } _linux_amd64.tar.gz
wget -q https://github.com/traefik/traefik/releases/download/v${ RELEASE } /traefik_v${ RELEASE } _linux_amd64.tar.gz