Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/e34adc12d9ab15fa5126e0c0e3a625cea7940e7f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
@ -496,7 +496,7 @@ namespace Emby.Server.Implementations
{
var networkConfiguration = ServerConfigurationManager . GetNetworkConfiguration ( ) ;
HttpPort = networkConfiguration . HttpServerPortNumber ;
HttpsPort = networkConfiguration . Https Server PortNumber;
HttpsPort = networkConfiguration . Https PortNumber;
// Safeguard against invalid configuration
if ( HttpPort = = HttpsPort )
@ -919,7 +919,7 @@ namespace Emby.Server.Implementations
var networkConfiguration = ServerConfigurationManager . GetNetworkConfiguration ( ) ;
// Need to restart if ports have changed
if ( networkConfiguration . HttpServerPortNumber ! = HttpPort | |
networkConfiguration . Https Server PortNumber ! = HttpsPort )
networkConfiguration . Https PortNumber ! = HttpsPort )
{
if ( ServerConfigurationManager . Configuration . IsPortAuthorized )
{
@ -16,7 +16,7 @@ namespace Jellyfin.Networking.Configuration
public const int DefaultHttpPort = 8096 ;
/// <summary>
/// The default value for <see cref="PublicHttpsPort"/> and <see cref="Https Server PortNumber"/>.
/// The default value for <see cref="PublicHttpsPort"/> and <see cref="Https PortNumber"/>.
/// </summary>
public const int DefaultHttpsPort = 8920 ;
@ -76,7 +76,7 @@ namespace Jellyfin.Networking.Configuration
/// Gets or sets the HTTPS server port number.
/// </summary>
/// <value>The HTTPS server port number.</value>
public int Https Server PortNumber { get ; set ; } = DefaultHttpsPort ;
public int Https PortNumber { get ; set ; } = DefaultHttpsPort ;
/// <summary>
/// Gets or sets a value indicating whether to use HTTPS.