aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Application/ConfigurationLoader.cs2
-rw-r--r--bin/OpenSim.ini.example10
-rw-r--r--bin/OpenSimDefaults.ini3
3 files changed, 14 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs
index b19e549..6e7bd1c 100644
--- a/OpenSim/Region/Application/ConfigurationLoader.cs
+++ b/OpenSim/Region/Application/ConfigurationLoader.cs
@@ -325,6 +325,8 @@ namespace OpenSim
325 Environment.Exit(1); 325 Environment.Exit(1);
326 } 326 }
327 } 327 }
328
329 configSource.Source.ExpandKeyValues();
328 return success; 330 return success;
329 } 331 }
330 332
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 6d8c2bf..02ca13e 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -95,6 +95,16 @@
95 ;; Place to create a PID file 95 ;; Place to create a PID file
96 ; PIDFile = "/tmp/OpenSim.exe.pid" 96 ; PIDFile = "/tmp/OpenSim.exe.pid"
97 97
98 ;# {RegistryLocation} {} {Addins Registry Location} {}
99 ; Set path to directory for addin registry if you want addins outside of bin.
100 ; Information about the registered repositories and installed plugins will
101 ; be stored here. The OpenSim.exe process must have R/W access to the location.
102 ; RegistryLocation = "."
103
104 ;# {Include-Addins} {} {Loads all inis of all addins} {}
105 ; Leave this as is if you want 3rd-party addins to be automatically initialized.
106 Include-Addins = "${RegistryLocation}/addins/*/*.ini"
107
98 ;# {region_info_source} {} {Where to load region from?} {filesystem web} filesystem 108 ;# {region_info_source} {} {Where to load region from?} {filesystem web} filesystem
99 ;; Determine where OpenSimulator looks for the files which tell it 109 ;; Determine where OpenSimulator looks for the files which tell it
100 ;; which regions to server 110 ;; which regions to server
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini
index 3e9514e..73fe59c 100644
--- a/bin/OpenSimDefaults.ini
+++ b/bin/OpenSimDefaults.ini
@@ -75,7 +75,7 @@
75 ; Set path to directory for plugin registry. Information about the 75 ; Set path to directory for plugin registry. Information about the
76 ; registered repositories and installed plugins will be stored here. 76 ; registered repositories and installed plugins will be stored here.
77 ; The OpenSim.exe process must have R/W access to the location. 77 ; The OpenSim.exe process must have R/W access to the location.
78 ; RegistryLocation = "." 78 RegistryLocation = "."
79 79
80 ; ## 80 ; ##
81 ; ## CLIENTS 81 ; ## CLIENTS
@@ -1877,3 +1877,4 @@
1877 1877
1878[Modules] 1878[Modules]
1879 Include-modules = "addon-modules/*/config/*.ini" 1879 Include-modules = "addon-modules/*/config/*.ini"
1880