aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Application/OpenSimMain.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs
index 9fd5bcc..1f9894c 100644
--- a/OpenSim/Region/Application/OpenSimMain.cs
+++ b/OpenSim/Region/Application/OpenSimMain.cs
@@ -212,6 +212,15 @@ namespace OpenSim
212 config.Set("asset_server_url", "http://127.0.0.1:" + AssetConfig.DefaultHttpPort.ToString()); 212 config.Set("asset_server_url", "http://127.0.0.1:" + AssetConfig.DefaultHttpPort.ToString());
213 config.Set("inventory_server_url", "http://127.0.0.1:" + InventoryConfig.DefaultHttpPort.ToString()); 213 config.Set("inventory_server_url", "http://127.0.0.1:" + InventoryConfig.DefaultHttpPort.ToString());
214 } 214 }
215
216
217 if (m_config.Configs["RemoteAdmin"] == null)
218 m_config.AddConfig("RemoteAdmin");
219 config = m_config.Configs["RemoteAdmin"];
220 if (config != null)
221 {
222 config.Set("enabled", "false");
223 }
215 } 224 }
216 225
217 protected void ReadConfigSettings() 226 protected void ReadConfigSettings()