Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/12952cb399fca77f632f0bad5d8070594f96ad96?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -27,20 +27,21 @@ rm packages-microsoft-prod.deb
$STD apt-get update
$STD apt-get install -y dotnet-sdk-6.0
msg_ok "Installed ASP.NET Core Runtime"
msg_info "Installing rdtclient"
wget -q https://github.com/rogerfar/rdt-client/releases/latest/download/RealDebridClient.zip
unzip -qq RealDebridClient.zip -d /opt/rdtc
rm RealDebridClient.zip
mkdir -p /data/db/ # defaults for rdtclient
mkdir -p /data/downloads # defaults for rdtclient
mkdir -p /data/db/
mkdir -p /data/downloads
msg_info "Installed rdtclient"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/rdtc.service
[ Unit]
Description = RdtClient Service
[ Service]
WorkingDirectory = /opt/rdtc
ExecStart = /usr/bin/dotnet RdtClient.Web.dll
SyslogIdentifier = RdtClient
@ -49,7 +50,6 @@ User=root
[ Install]
WantedBy = multi-user.target
EOF
$STD systemctl daemon-reload
$STD systemctl enable -q --now rdtc
msg_ok "Created Service"