From 616cf74e73226b2160558af6fcd24578b9ffdfa6 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 11 Dec 2008 20:43:21 +0000 Subject: make a couple of other config default to make the example ini to give us a better chance of working out of the box --- OpenSim/Region/Application/ConfigurationLoader.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs index 17080ca..5e066fe 100644 --- a/OpenSim/Region/Application/ConfigurationLoader.cs +++ b/OpenSim/Region/Application/ConfigurationLoader.cs @@ -116,6 +116,8 @@ namespace OpenSim if (null == config) config = defaultConfig.AddConfig("Startup"); + config.Set("region_info_source", "filesystem"); + config.Set("gridmode", false); config.Set("physics", "basicphysics"); config.Set("meshing", "ZeroMesher"); @@ -128,8 +130,10 @@ namespace OpenSim config.Set("startup_console_commands_file", String.Empty); config.Set("shutdown_console_commands_file", String.Empty); config.Set("DefaultScriptEngine", "XEngine"); - config.Set("asset_database", "sqlite"); + config.Set("asset_database", "local"); config.Set("clientstack_plugin", "OpenSim.Region.ClientStack.LindenUDP.dll"); + // life doesn't really work without this + config.Set("EventQueue", true); } { @@ -167,7 +171,7 @@ namespace OpenSim config.Set("user_recv_key", "null"); config.Set("asset_server_url", "http://127.0.0.1:" + AssetConfig.DefaultHttpPort.ToString()); config.Set("inventory_server_url", "http://127.0.0.1:" + InventoryConfig.DefaultHttpPort.ToString()); - config.Set("secure_inventory_server", "true"); + config.Set("secure_inventory_server", "false"); } return defaultConfig; -- cgit v1.1