Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/2d1f506f93ab007540429fdf74c1ec9ce96f9f02/ServiceHelpers/ServiceInstall/Program.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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();
}
}
}