added public https port setting

This commit is contained in:
Luke Pulverenti
2015-01-18 23:53:28 -05:00
parent de76156391
commit 87314ec101
5 changed files with 19 additions and 6 deletions

View File

@@ -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;