Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/660f6174b32268edf7b9bdb4441eef83b187daaf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
2 deletions
@ -205,9 +205,9 @@ namespace Jellyfin.Server
string cacheDir = Environment . GetEnvironmentVariable ( "JELLYFIN_CACHE_DIR" ) ;
if ( string . IsNullOrEmpty ( cacheDir ) )
{
if ( options . C ontainsOption( "-cachedir" ) )
if ( options . C acheDir ! = null )
{
cacheDir = options . GetOption( "-cachedir" ) ;
cacheDir = options . CacheDir ;
}
else if ( ! RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) )
{
@ -11,6 +11,9 @@ namespace Jellyfin.Server
[Option('d', "datadir", Required = false, HelpText = "Path to use for the data folder (database files, etc.).")]
public string DataDir { get ; set ; }
[Option('C', "configdir", Required = false, HelpText = "Path to use for caching.")]
public string CacheDir { get ; set ; }
[Option('c', "configdir", Required = false, HelpText = "Path to use for configuration data (user settings and pictures).")]
public string ConfigDir { get ; set ; }