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/a168bdfa006ef02b741f9aa757cc8dac8b358eba/ServiceHelpers/ServiceInstall/Program.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/ServiceHelpers/ServiceInstall/Program.cs

17 lines
309 B

using System.Linq;
using System;
using InstallService;
namespace ServiceInstall
{
public static class Program
{
static void Main()
{
ServiceHelper.Run(@"/i");
Console.WriteLine("Press any key to continue");
Console.ReadLine();
}
}
}