diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/RegionApplicationBase.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 8bb35c1..469c084 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -81,7 +81,12 @@ namespace OpenSim.Region.ClientStack | |||
81 | 81 | ||
82 | Initialize(); | 82 | Initialize(); |
83 | 83 | ||
84 | m_httpServer = new BaseHttpServer(m_httpServerPort); | 84 | m_httpServer = new BaseHttpServer(m_httpServerPort,m_networkServersInfo.HttpUsesSSL,m_networkServersInfo.httpSSLPort, m_networkServersInfo.HttpSSLCN); |
85 | if (m_networkServersInfo.HttpUsesSSL && (m_networkServersInfo.HttpListenerPort == m_networkServersInfo.httpSSLPort)) | ||
86 | { | ||
87 | m_log.Error("[HTTP]: HTTP Server config failed. HTTP Server and HTTPS server must be on different ports"); | ||
88 | } | ||
89 | |||
85 | 90 | ||
86 | m_log.Info("[REGION]: Starting HTTP server"); | 91 | m_log.Info("[REGION]: Starting HTTP server"); |
87 | 92 | ||