Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/86984bbae36cfd2d46237ba68923cc650e9fda35 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added cert override for integration tests

pull/2/head
kay.one 12 years ago
parent e0bf68123d
commit 86984bbae3

@ -2,6 +2,7 @@
using System.Collections.Generic;
using Microsoft.Owin.Hosting;
using NLog;
using NzbDrone.Common.Security;
using NzbDrone.Core.Configuration;
using NzbDrone.Owin.MiddleWare;
using Owin;
@ -25,6 +26,8 @@ namespace NzbDrone.Owin
public void StartServer()
{
IgnoreCertErrorPolicy.Register();
var url = "http://*:" + _configFileProvider.Port;
var options = new StartOptions(url)

Loading…
Cancel
Save