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.example37
1 files changed, 37 insertions, 0 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 817441d..d88018a 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -535,3 +535,40 @@ Password = "password"
535ImportOnStartup = false 535ImportOnStartup = false
536Autosave = false 536Autosave = false
537AutoSavePeriod = 15 ; Number of minutes between autosave backups 537AutoSavePeriod = 15 ; Number of minutes between autosave backups
538
539
540[XEngine]
541; How many threads to keep alive even if nothing is happening
542MinThreads = 2
543; How many threads to start at maximum load
544MaxThreads = 100
545; Time a thread must be idle (in seconds) before it dies
546IdleTimeout = 60
547; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
548Priority = "BelowNormal"
549; Maximum number of events to queue for a script (excluding timers)
550MaxScriptEventQueue = 300
551; Stack size per thread created
552ThreadStackSize = 262144
553; Rate to poll for asynchronous command replies (ms)
554AsyncLLCommandLoopms = 50
555; Save the source of all compiled scripts
556WriteScriptSourceToDebugFile = false
557; Default language for scripts
558DefaultCompileLanguage = lsl
559; List of allowed languages (lsl,vb,js,cs)
560AllowedCompilers = lsl
561; Compile debug info (line numbers) into the script assemblies
562CompileWithDebugInformation = true
563; Allow the use of os* functions (some are dangerous)
564AllowOSFunctions = false
565; Interval (s) between background save of script states
566SaveInterval = 120
567; Interval (s) between maintenance runs (0 = disable)
568MaintenanceInterval = 10
569; Time a script can spend in an event handler before it is interrupted
570EventLimit = 30
571; If a script overruns it's event limit, kill the script?
572KillTimedOutScripts = false
573; Allow OS console command functionality (VERY DANGEROUS!!)
574AllowosConsoleCommand = false \ No newline at end of file