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

Fixed: Changed Authentication cookie to prevent conflicts with other apps. (invalidates existing logins)

Closes 
pull/2279/head
Taloth Saldono 8 years ago
parent 6a6d415625
commit 62bc63312d

@ -64,6 +64,8 @@ namespace NzbDrone.Api.Authentication
new DefaultHmacProvider(new PassphraseKeyGenerator(_configService.HmacPassphrase, Encoding.ASCII.GetBytes(_configService.HmacSalt)))
);
FormsAuthentication.FormsAuthenticationCookieName = "_ncfa_sonarr";
FormsAuthentication.Enable(pipelines, new FormsAuthenticationConfiguration
{
RedirectUrl = _configFileProvider.UrlBase + "/login",

Loading…
Cancel
Save