Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/a00c0defa8cb22774f5dc8a7d566eb36ac7307e8/MediaBrowser.Controller/Configuration/IServerConfigurationManager.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Configuration
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IServerConfigurationManager
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IServerConfigurationManager : IConfigurationManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application paths.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application paths.</value>
|
|
|
|
|
IServerApplicationPaths ApplicationPaths { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration.</value>
|
|
|
|
|
ServerConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
|
|
bool SetOptimalValues();
|
|
|
|
|
}
|
|
|
|
|
}
|