diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-18 23:29:57 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-18 23:29:57 -0500 |
| commit | de76156391655f726b5655f727e06822398827ca (patch) | |
| tree | f7ae5e4af806744aaa34136ba47648dd2e412a02 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 1316994324b178650e6bb9ddca740d9159d316d1 (diff) | |
rework hosting options
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index a2a909dcc..94bd30d0b 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -36,7 +36,7 @@ namespace MediaBrowser.Model.Configuration /// Gets or sets a value indicating whether [use HTTPS]. /// </summary> /// <value><c>true</c> if [use HTTPS]; otherwise, <c>false</c>.</value> - public bool UseHttps { get; set; } + public bool EnableHttps { get; set; } /// <summary> /// Gets or sets the value pointing to the file system where the ssl certiifcate is located.. @@ -206,7 +206,7 @@ namespace MediaBrowser.Model.Configuration PublicPort = 8096; HttpServerPortNumber = 8096; HttpsPortNumber = 8920; - UseHttps = false; + EnableHttps = false; CertificatePath = null; EnableDashboardResponseCaching = true; EnableDashboardResourceMinification = true; |
