89 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
| ; This file shows initialization defaults for OpenSimulator.  If you want to override these
 | |
| ; please copy/rename this file from .ini.example file to .ini.  For example
 | |
| ;
 | |
| ; chat.ini.example => chat.ini
 | |
| ;
 | |
| ; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
 | |
| ;
 | |
| 
 | |
| [XEngine]
 | |
|     ; Enable this engine in this OpenSim instance
 | |
|     Enabled = true
 | |
| 
 | |
|     ; How many threads to keep alive even if nothing is happening
 | |
|     MinThreads = 2
 | |
| 
 | |
|     ; How many threads to start at maximum load
 | |
|     MaxThreads = 100
 | |
| 
 | |
|     ; Time a thread must be idle (in seconds) before it dies
 | |
|     IdleTimeout = 60
 | |
| 
 | |
|     ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
 | |
|     Priority = "BelowNormal"
 | |
| 
 | |
|     ; Maximum number of events to queue for a script (excluding timers)
 | |
|     MaxScriptEventQueue = 300
 | |
| 
 | |
|     ; Stack size per thread created
 | |
|     ThreadStackSize = 262144
 | |
| 
 | |
|     ; Rate to poll for asynchronous command replies (ms)
 | |
|     ; currently unused
 | |
|     ;AsyncLLCommandLoopms = 50
 | |
| 
 | |
|     ; Save the source of all compiled scripts
 | |
|     WriteScriptSourceToDebugFile = false
 | |
| 
 | |
|     ; Default language for scripts
 | |
|     DefaultCompileLanguage = lsl
 | |
| 
 | |
|     ; List of allowed languages (lsl,vb,js,cs)
 | |
|     ; AllowedCompilers=lsl,cs,js,vb.  
 | |
|     ; *warning*, non lsl languages have access to static methods such as System.IO.File.  Enable at your own risk.
 | |
|     AllowedCompilers=lsl
 | |
| 
 | |
|     ; Compile debug info (line numbers) into the script assemblies
 | |
|     CompileWithDebugInformation = true
 | |
| 
 | |
|     ; Allow the use of os* functions (some are dangerous)
 | |
|     AllowOSFunctions = false
 | |
| 
 | |
|     ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
 | |
|     OSFunctionThreatLevel = VeryLow
 | |
| 
 | |
|     ; Interval (s) between background save of script states
 | |
|     SaveInterval = 120
 | |
| 
 | |
|     ; Interval (s) between maintenance runs (0 = disable)
 | |
|     MaintenanceInterval = 10
 | |
| 
 | |
|     ; Time a script can spend in an event handler before it is interrupted
 | |
|     EventLimit = 30
 | |
| 
 | |
|     ; If a script overruns it's event limit, kill the script?
 | |
|     KillTimedOutScripts = false
 | |
| 
 | |
|     ; Sets the multiplier for the scripting delays
 | |
|     ScriptDelayFactor = 1.0
 | |
| 
 | |
|     ; The factor the 10 m distances llimits are multiplied by
 | |
|     ScriptDistanceLimitFactor = 1.0
 | |
| 
 | |
|     ; OS Functions enable/disable
 | |
|     ; For each function, you can add one line, as shown
 | |
|     ; The default for all functions allows them if below threat level
 | |
| 
 | |
|     ; true allows the use of the function unconditionally
 | |
|     ; Allow_osSetRegionWaterHeight = true
 | |
| 
 | |
|     ; false disables the function completely
 | |
|     ; Allow_osSetRegionWaterHeight = false
 | |
| 
 | |
|     ; Comma separated list of UUIDS allows the function for that list of UUIDS
 | |
|     ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
 | |
| 
 | |
|     ; Allow for llCreateLink and llBreakLink to work without asking for permission 
 | |
|     ; only enable this in a trusted environment otherwise you may be subject to hijacking
 | |
|     ; AutomaticLinkPermission = false
 |