Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5276c75cdeb079cd0b24c4b2dc574a584d5817b6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
4 deletions
@ -672,9 +672,8 @@ namespace Emby.Server.Implementations
serviceCollection . AddSingleton ( JsonSerializer ) ;
serviceCollection . AddSingleton ( LoggerFactory ) ;
serviceCollection . AddLogging ( ) ;
serviceCollection . AddSingleton ( Logger ) ;
// TODO: Support for injecting ILogger should be deprecated in favour of ILogger<T> and this removed
serviceCollection . AddSingleton < ILogger > ( Logger ) ;
serviceCollection . AddSingleton ( FileSystemManager ) ;
serviceCollection . AddSingleton < TvDbClientManager > ( ) ;
@ -26,6 +26,7 @@ using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Logging ;
using Microsoft.Extensions.Logging.Abstractions ;
using Serilog ;
using Serilog.Events ;
using Serilog.Extensions.Logging ;
using SQLitePCL ;
using ILogger = Microsoft . Extensions . Logging . ILogger ;
@ -260,6 +261,7 @@ namespace Jellyfin.Server
}
}
} )
. UseSerilog ( )
. UseContentRoot ( appHost . ContentRoot )
. ConfigureServices ( services = >
{
@ -1,6 +1,12 @@
{
"Serilog" : {
"MinimumLevel" : "Information" ,
"MinimumLevel" : {
"Default" : "Information" ,
"Override" : {
"Microsoft" : "Warning" ,
"System" : "Warning"
}
} ,
"WriteTo" : [
{
"Name" : "Console" ,