Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/dbc1435a9e6567eafd3d499a6b61c95e85d2c85d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
45 additions and
6 deletions
@ -1,6 +1,5 @@
using System.Collections.Generic ;
using Emby.Server.Implementations.HttpServer ;
using Emby.Server.Implementations.Updates ;
using static MediaBrowser . Controller . Extensions . ConfigurationExtensions ;
namespace Emby.Server.Implementations
@ -19,7 +18,8 @@ namespace Emby.Server.Implementations
{ HttpListenerHost . DefaultRedirectKey , "web/index.html" } ,
{ FfmpegProbeSizeKey , "1G" } ,
{ FfmpegAnalyzeDurationKey , "200M" } ,
{ PlaylistsAllowDuplicatesKey , bool . TrueString }
{ PlaylistsAllowDuplicatesKey , bool . TrueString } ,
{ BindToUnixSocketKey , bool . FalseString }
} ;
}
}
@ -344,11 +344,24 @@ namespace Jellyfin.Server
}
}
// Bind to unix socket (only on OSX and Linux)
if ( ! RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) )
// Bind to unix socket (only on mac OS and Linux)
if ( startupConfig . UseUnixSocket ( ) & & ! RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) )
{
// TODO: allow configuration of socket path
var socketPath = $"{appPaths.DataPath}/socket.sock" ;
var socketPath = startupConfig . GetUnixSocketPath ( ) ;
if ( string . IsNullOrEmpty ( socketPath ) )
{
var xdgRuntimeDir = Environment . GetEnvironmentVariable ( "XDG_RUNTIME_DIR" ) ;
if ( xdgRuntimeDir = = null )
{
// Fall back to config dir
socketPath = Path . Join ( appPaths . ConfigurationDirectoryPath , "socket.sock" ) ;
}
else
{
socketPath = Path . Join ( xdgRuntimeDir , "jellyfin-socket" ) ;
}
}
// Workaround for https://github.com/aspnet/AspNetCore/issues/14134
if ( File . Exists ( socketPath ) )
{
@ -33,6 +33,16 @@ namespace MediaBrowser.Controller.Extensions
/// </summary>
public const string PlaylistsAllowDuplicatesKey = "playlists:allowDuplicates" ;
/// <summary>
/// The key for a setting that indicates whether kestrel should bind to a unix socket.
/// </summary>
public const string BindToUnixSocketKey = "kestrel:socket" ;
/// <summary>
/// The key for the unix socket path.
/// </summary>
public const string UnixSocketPathKey = "kestrel:socketPath" ;
/// <summary>
/// Gets a value indicating whether the application should host static web content from the <see cref="IConfiguration"/>.
/// </summary>
@ -65,5 +75,21 @@ namespace MediaBrowser.Controller.Extensions
/// <returns>True if playlists should allow duplicates, otherwise false.</returns>
public static bool DoPlaylistsAllowDuplicates ( this IConfiguration configuration )
= > configuration . GetValue < bool > ( PlaylistsAllowDuplicatesKey ) ;
/// <summary>
/// Gets a value indicating whether kestrel should bind to a unix socket from the <see cref="IConfiguration" />.
/// </summary>
/// <param name="configuration">The configuration to read the setting from.</param>
/// <returns><c>true</c> if kestrel should bind to a unix socket, otherwise <c>false</c>.</returns>
public static bool UseUnixSocket ( this IConfiguration configuration )
= > configuration . GetValue < bool > ( BindToUnixSocketKey ) ;
/// <summary>
/// Gets the path for the unix socket from the <see cref="IConfiguration" />.
/// </summary>
/// <param name="configuration">The configuration to read the setting from.</param>
/// <returns>The unix socket path.</returns>
public static string GetUnixSocketPath ( this IConfiguration configuration )
= > configuration [ UnixSocketPathKey ] ;
}
}