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

10 lines
195 B

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