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

10 lines
195 B

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