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