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/b0940ed8de47dcd04ae64c8a58cf2b0501072550/NzbDrone.Web/Controllers/V2Controller.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Web/Controllers/V2Controller.cs

22 lines
323 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace NzbDrone.Web.Controllers
{
public class V2Controller : Controller
{
//
// GET: /V2/
public ActionResult Index()
{
return View();
}
}
}