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

Fixed SSL cert registration string

pull/30/head
Mark McDowall 12 years ago
parent 4cb9db3230
commit 377a32e5e6

@ -36,7 +36,7 @@ namespace NzbDrone.Host.AccessControl
return;
}
var arguments = String.Format("netsh http add sslcert ipport=0.0.0.0:{0} certhash={1} appid={{{2}}", _configFileProvider.SslPort, _configFileProvider.SslCertHash, APP_ID);
var arguments = String.Format("netsh http add sslcert ipport=0.0.0.0:{0} certhash={1} appid={{{2}}}", _configFileProvider.SslPort, _configFileProvider.SslCertHash, APP_ID);
_netshProvider.Run(arguments);
}

Loading…
Cancel
Save