Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/529f65339fae34135edb5957c5974de953fbefec/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();
}
}