Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c7fcfe04beaf501f19dbda04e8ce44d89a87d3f8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -33,12 +33,12 @@ namespace NzbDrone.Api.Authentication
{
if ( _configFileProvider . AuthenticationMethod = = AuthenticationType . Forms )
{
RegisterFormsAuth ( pipelines ) ;
RegisterFormsAuth ( pipelines ) ;
}
else if ( _configFileProvider . AuthenticationMethod = = AuthenticationType . Basic )
{
pipelines . EnableBasicAuthentication ( new BasicAuthenticationConfiguration ( _authenticationService , " Sonarr") ) ;
pipelines . EnableBasicAuthentication ( new BasicAuthenticationConfiguration ( _authenticationService , " Radarr") ) ;
}
pipelines . BeforeRequest . AddItemToEndOfPipeline ( ( Func < NancyContext , Response > ) RequiresAuthentication ) ;
@ -22,7 +22,7 @@ namespace NzbDrone.Core.Notifications.Email
public EmailSettings ( )
{
Server = "s t mp.google.com";
Server = "s mt p.google.com";
Port = 587 ;
Ssl = true ;
}