aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/EntryPoints
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-18 23:53:28 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-18 23:53:28 -0500
commit87314ec101282bfe45c9b3c5b0a09cbd611d4ce8 (patch)
tree15bc66461d516c583e22738d7f11b00a38a18c6a /MediaBrowser.Server.Implementations/EntryPoints
parentde76156391655f726b5655f727e06822398827ca (diff)
added public https port setting
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints')
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs b/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
index 4371739b7..5c69db3e1 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
@@ -145,6 +145,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
_createdRules.Add(address);
CreatePortMap(device, _appHost.HttpPort, _config.Configuration.PublicPort);
+ CreatePortMap(device, _appHost.HttpsPort, _config.Configuration.PublicHttpsPort);
}
}