mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
added public https port setting
This commit is contained in:
@@ -20,6 +20,12 @@ namespace MediaBrowser.Model.Configuration
|
||||
/// <value>The public mapped port.</value>
|
||||
public int PublicPort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the public HTTPS port.
|
||||
/// </summary>
|
||||
/// <value>The public HTTPS port.</value>
|
||||
public int PublicHttpsPort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the HTTP server port number.
|
||||
/// </summary>
|
||||
@@ -204,6 +210,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
{
|
||||
ImageSavingConvention = ImageSavingConvention.Compatible;
|
||||
PublicPort = 8096;
|
||||
PublicHttpsPort = 8920;
|
||||
HttpServerPortNumber = 8096;
|
||||
HttpsPortNumber = 8920;
|
||||
EnableHttps = false;
|
||||
|
||||
Reference in New Issue
Block a user