Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/27ea93090f8484ba4c277a032dc3a2f659ad8d60/docs.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
#!/bin/bash
set -e
FRAMEWORK = "net6.0"
PLATFORM = $1
if [ " $PLATFORM " = "Windows" ] ; then
RUNTIME = "win-x64"
elif [ " $PLATFORM " = "Linux" ] ; then
RUNTIME = "linux-x64"
elif [ " $PLATFORM " = "Mac" ] ; then
RUNTIME = "osx-x64"
else
echo "Platform must be provided as first arguement: Windows, Linux or Mac"
exit 1
fi
outputFolder = '_output'
testPackageFolder = '_tests'
rm -rf $outputFolder
rm -rf $testPackageFolder
slnFile = src/Prowlarr.sln
platform = Posix
if [ " $PLATFORM " = "Windows" ] ; then
application = Prowlarr.Console.dll
else
application = Prowlarr.dll
fi
dotnet clean $slnFile -c Debug
dotnet clean $slnFile -c Release
dotnet msbuild -restore $slnFile -p:Configuration= Debug -p:Platform= $platform -p:RuntimeIdentifiers= $RUNTIME -t:PublishAllRids
dotnet new tool-manifest
dotnet tool install --version 6.6.2 Swashbuckle.AspNetCore.Cli
dotnet tool run swagger tofile --output ./src/Prowlarr.Api.V1/openapi.json " $outputFolder / $FRAMEWORK / $RUNTIME / $application " v1 &
sleep 45
kill %1
exit 0