aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example40
1 files changed, 35 insertions, 5 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 342bce6..c3d3216 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -71,6 +71,11 @@
71 ;; in a <Regions> tag. 71 ;; in a <Regions> tag.
72 ; regionload_webserver_url = "http://example.com/regions.xml"; 72 ; regionload_webserver_url = "http://example.com/regions.xml";
73 73
74 ;# {allow_regionless} {} {Allow simulator to start up with no regions configured.} {true false} false
75 ;; Allow the simulator to start up if there are no region configuration available
76 ;; from the selected region_info_source.
77 ; allow_regionless = false
78
74 ;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256 79 ;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256
75 ;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonphysicalPrimMax!). 80 ;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonphysicalPrimMax!).
76 ; NonPhysicalPrimMax = 256 81 ; NonPhysicalPrimMax = 256
@@ -149,14 +154,13 @@
149 154
150 ;; Choose one of the physics engines below 155 ;; Choose one of the physics engines below
151 ;; OpenDynamicsEngine is by some distance the most developed physics engine 156 ;; OpenDynamicsEngine is by some distance the most developed physics engine
152 ;; basicphysics effectively does not model physics at all, making all 157 ;; BulletSim is incomplete and experimental but in active development
153 ;; objects phantom 158 ;; basicphysics effectively does not model physics at all, making all objects phantom
154 ;; The Bullet plugins do not work properly right now. A better Bullet plugin is on the way.
155 ;; Default is OpenDynamicsEngine 159 ;; Default is OpenDynamicsEngine
156 ; physics = OpenDynamicsEngine 160 ; physics = OpenDynamicsEngine
161 ; physics = BulletSim
157 ; physics = basicphysics 162 ; physics = basicphysics
158 ; physics = POS 163 ; physics = POS
159 ; physics = modified_BulletX
160 164
161 ;# {permissionmodules} {} {Permission modules to use (may specify multiple modules, separated by space} {} DefaultPermissionsModule 165 ;# {permissionmodules} {} {Permission modules to use (may specify multiple modules, separated by space} {} DefaultPermissionsModule
162 ;; Permission modules to use, separated by space. 166 ;; Permission modules to use, separated by space.
@@ -219,6 +223,13 @@
219 ;; server to send mail through. 223 ;; server to send mail through.
220 ; emailmodule = DefaultEmailModule 224 ; emailmodule = DefaultEmailModule
221 225
226 ; Controls whether previously compiled scripts are deleted on sim restart. If you disable this
227 ; then startup will be faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
228 ; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
229 ; by scripts have changed.
230 ; Default is false
231 ; DeleteScriptsOnStartup = true
232
222 233
223[SMTP] 234[SMTP]
224 ;; The SMTP server enabled the email module to send email to external 235 ;; The SMTP server enabled the email module to send email to external
@@ -589,6 +600,25 @@
589 ;; VeryHigh, Severe 600 ;; VeryHigh, Severe
590 OSFunctionThreatLevel = VeryLow 601 OSFunctionThreatLevel = VeryLow
591 602
603 ; OS Functions enable/disable
604 ; For each function, you can add one line, as shown
605 ; The default for all functions allows them if below threat level
606
607 ; true allows the use of the function unconditionally
608 ; Allow_osSetRegionWaterHeight = true
609
610 ; false disables the function completely
611 ; Allow_osSetRegionWaterHeight = false
612
613 ; Comma separated list of UUIDS allows the function for that list of UUIDS
614 ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
615
616 ; You can also use script creators as the uuid
617 ; Creators_osSetRegionWaterHeight = <uuid>, ...
618
619 ; If both Allow_ and Creators_ are given, effective permissions
620 ; are the union of the two.
621
592 ;; Time a script can spend in an event handler before it is interrupted 622 ;; Time a script can spend in an event handler before it is interrupted
593 ; EventLimit = 30 623 ; EventLimit = 30
594 624
@@ -740,7 +770,7 @@
740 ;; "config-include/StandaloneCommon.ini.example" to "config-include/StandaloneCommon.ini" before 770 ;; "config-include/StandaloneCommon.ini.example" to "config-include/StandaloneCommon.ini" before
741 ;; editing it to set the database and backend services that OpenSim will use. 771 ;; editing it to set the database and backend services that OpenSim will use.
742 ;; 772 ;;
743 Include-Architecture = "config-include/Standalone.ini" 773 ; Include-Architecture = "config-include/Standalone.ini"
744 ; Include-Architecture = "config-include/StandaloneHypergrid.ini" 774 ; Include-Architecture = "config-include/StandaloneHypergrid.ini"
745 ; Include-Architecture = "config-include/Grid.ini" 775 ; Include-Architecture = "config-include/Grid.ini"
746 ; Include-Architecture = "config-include/GridHypergrid.ini" 776 ; Include-Architecture = "config-include/GridHypergrid.ini"