Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/885bc11b67f7b8131b4695000608a08a928b935e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
0 deletions
@ -897,6 +897,18 @@ namespace Emby.Server.Implementations
. GetCommandLineArgs ( )
. Distinct ( ) ;
// Get all 'JELLYFIN_' prefixed environment variables
var allEnvVars = Environment . GetEnvironmentVariables ( ) ;
var jellyfinEnvVars = new Dictionary < object , object > ( ) ;
foreach ( var key in allEnvVars . Keys )
{
if ( key . ToString ( ) . StartsWith ( "JELLYFIN_" , StringComparison . OrdinalIgnoreCase ) )
{
jellyfinEnvVars . Add ( key , allEnvVars [ key ] ) ;
}
}
logger . LogInformation ( "Environment Variables: {EnvVars}" , jellyfinEnvVars ) ;
logger . LogInformation ( "Arguments: {Args}" , commandLineArgs ) ;
logger . LogInformation ( "Operating system: {OS}" , OperatingSystem . Name ) ;
logger . LogInformation ( "Architecture: {Architecture}" , RuntimeInformation . OSArchitecture ) ;