From 624423deb1c5d87e94db02a5725962f2745ed67e Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 12 Dec 2008 00:57:48 +0000 Subject: [PATCH] apparently opensim only works if secure_inventory_server = true, who knew? Reverting that. --- OpenSim/Region/Application/ConfigurationLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs index 5e066feac9..8df2528a05 100644 --- a/OpenSim/Region/Application/ConfigurationLoader.cs +++ b/OpenSim/Region/Application/ConfigurationLoader.cs @@ -171,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", "false"); + config.Set("secure_inventory_server", "true"); } return defaultConfig;