Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/5841140c99d08ca156ac5a523b5268b01b5abc7e/NzbDrone.Host/Owin/IHostController.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Host/Owin/IHostController.cs

9 lines
170 B

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