mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-26 18:48:21 +01:00
add https port to config object
This commit is contained in:
@@ -1098,6 +1098,7 @@ namespace MediaBrowser.Server.Startup.Common
|
||||
NativeApp.AuthorizeServer(
|
||||
UdpServerEntryPoint.PortNumber,
|
||||
ServerConfigurationManager.Configuration.HttpServerPortNumber,
|
||||
ServerConfigurationManager.Configuration.HttpsPortNumber,
|
||||
ConfigurationManager.CommonApplicationPaths.TempDirectory);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
@@ -18,8 +18,9 @@ namespace MediaBrowser.Server.Startup.Common
|
||||
/// </summary>
|
||||
/// <param name="udpPort">The UDP port.</param>
|
||||
/// <param name="httpServerPort">The HTTP server port.</param>
|
||||
/// <param name="httpsServerPort">The HTTPS server port.</param>
|
||||
/// <param name="tempDirectory">The temporary directory.</param>
|
||||
void AuthorizeServer(int udpPort, int httpServerPort, string tempDirectory);
|
||||
void AuthorizeServer(int udpPort, int httpServerPort, int httpsServerPort, string tempDirectory);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the environment.
|
||||
|
||||
Reference in New Issue
Block a user