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.viewer-2-initial-appearance
parent
e76980bc49
commit
c25f84e31c
|
@ -116,7 +116,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController
|
|||
int port = m_config.GetInt("port", 0);
|
||||
|
||||
m_application = openSim;
|
||||
string bind_ip_address = m_config.GetString("bind_ip_address", "127.0.0.1");
|
||||
string bind_ip_address = m_config.GetString("bind_ip_address", "0.0.0.0");
|
||||
IPAddress ipaddr = IPAddress.Parse( bind_ip_address );
|
||||
m_httpServer = MainServer.GetHttpServer((uint)port,ipaddr);
|
||||
|
||||
|
|
Loading…
Reference in New Issue