diff options
author | Melanie | 2010-11-03 01:11:04 +0000 |
---|---|---|
committer | Melanie | 2010-11-03 01:11:04 +0000 |
commit | 636ca6218d2ad63cdec7f0b68d84a565542c1fe2 (patch) | |
tree | cbf3066d28ac232fbb164e432c03a2829157df71 | |
parent | Fix config items. Less used / expert items go in OpenSimDefaults.ini (diff) | |
download | opensim-SC_OLD-636ca6218d2ad63cdec7f0b68d84a565542c1fe2.zip opensim-SC_OLD-636ca6218d2ad63cdec7f0b68d84a565542c1fe2.tar.gz opensim-SC_OLD-636ca6218d2ad63cdec7f0b68d84a565542c1fe2.tar.bz2 opensim-SC_OLD-636ca6218d2ad63cdec7f0b68d84a565542c1fe2.tar.xz |
Change the default of the new bind_ip_address RemoteAdmin option to 0.0.0.0
so it reflects the prior default. We are not in the habot of changing default
behavior without good reason and making localhost the default would break
most current use cases.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 946f1b2..ba95426 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -116,7 +116,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
116 | int port = m_config.GetInt("port", 0); | 116 | int port = m_config.GetInt("port", 0); |
117 | 117 | ||
118 | m_application = openSim; | 118 | m_application = openSim; |
119 | string bind_ip_address = m_config.GetString("bind_ip_address", "127.0.0.1"); | 119 | string bind_ip_address = m_config.GetString("bind_ip_address", "0.0.0.0"); |
120 | IPAddress ipaddr = IPAddress.Parse( bind_ip_address ); | 120 | IPAddress ipaddr = IPAddress.Parse( bind_ip_address ); |
121 | m_httpServer = MainServer.GetHttpServer((uint)port,ipaddr); | 121 | m_httpServer = MainServer.GetHttpServer((uint)port,ipaddr); |
122 | 122 | ||