Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/eaa5575b232570453315431d5461a736831b88d2/fedora/restart.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
#!/bin/bash
# restart.sh - Jellyfin server restart script
# Part of the Jellyfin project (https://github.com/jellyfin)
#
# This script restarts the Jellyfin daemon on Linux when using
# the Restart button on the admin dashboard. It supports the
# systemctl, service, and traditional /etc/init.d (sysv) restart
# methods, chosen automatically by which one is found first (in
# that order).
#
# This script is used by the Debian/Ubuntu/Fedora/CentOS packages.
get_service_command( ) {
for command in systemctl service; do
if which $command & >/dev/null; then
echo $command && return
fi
done
echo "sysv"
}
cmd = " $( get_service_command ) "
echo " Detected service control platform ' $cmd '; using it to restart Jellyfin... "
case $cmd in
'systemctl' )
echo " sleep 0.5; /usr/bin/sudo $( which systemctl ) start jellyfin " | at now
; ;
'service' )
echo " sleep 0.5; /usr/bin/sudo $( which service ) jellyfin start " | at now
; ;
'sysv' )
echo "sleep 0.5; /usr/bin/sudo /etc/init.d/jellyfin start" | at now
; ;
esac
exit 0