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/d1a4c7c942420b0541bae7e1d5ef6a7ff4222d34/NzbDrone.Host/Owin/IHostController.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Host/Owin/IHostController.cs

9 lines
170 B

namespace NzbDrone.Host.Owin
{
public interface IHostController
{
string AppUrl { get; }
void StartServer();
void StopServer();
}
}