Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/e03e2c46d65dfc0e881d6993b22f1c02eda788ff
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
6 deletions
@ -5,6 +5,7 @@ using Nancy.Authentication.Basic;
using Nancy.Bootstrapper ;
using Nancy.Conventions ;
using Nancy.Diagnostics ;
using NzbDrone.Api.Authentication ;
using NzbDrone.Api.ErrorManagement ;
using NzbDrone.Api.Extensions ;
using NzbDrone.Api.Frontend ;
@ -36,12 +37,9 @@ namespace NzbDrone.Api
AutomapperBootstraper . InitializeAutomapper ( ) ;
container . Resolve < DatabaseTarget > ( ) . Register ( ) ;
container . Resolve < IEnableBasicAuthInNancy > ( ) . Register ( pipelines ) ;
container . Resolve < IMessageAggregator > ( ) . PublishEvent ( new ApplicationStartedEvent ( ) ) ;
pipelines . EnableBasicAuthentication ( new BasicAuthenticationConfiguration (
container . Resolve < IUserValidator > ( ) ,
"NzbDrone" ) ) ;
ApplicationPipelines . OnError . AddItemToEndOfPipeline ( container . Resolve < NzbDroneErrorPipeline > ( ) . HandleException ) ;
}
@ -89,7 +89,8 @@
<Reference Include= "Microsoft.CSharp" />
</ItemGroup>
<ItemGroup >
<Compile Include= "Authentication\AuthenticationValidator.cs" />
<Compile Include= "Authentication\AuthenticationService.cs" />
<Compile Include= "Authentication\EnableBasicAuthInNancy.cs" />
<Compile Include= "Authentication\NzbDroneUser.cs" />
<Compile Include= "AutomapperBootstraper.cs" />
<Compile Include= "Calendar\CalendarModule.cs" />
@ -8,7 +8,6 @@ namespace NzbDrone.Api
protected NzbDroneApiModule ( string resource )
: base ( "/api/" + resource . Trim ( '/' ) )
{
this . RequiresAuthentication ( ) ;
Options [ "/" ] = x = > new Response ( ) ;
}
}