clockwerk-opensim-config – Diff between revs 1 and 7

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 7
Line 55... Line 55...
55   55  
56 ; Max threads to allocate on the FireAndForget thread pool 56 ; Max threads to allocate on the FireAndForget thread pool
57 ; when running with the SmartThreadPool option above 57 ; when running with the SmartThreadPool option above
Line -... Line 58...
-   58 MaxPoolThreads = 15
-   59  
-   60 ; Plugin Registry Location
-   61 ; Set path to directory for plugin registry. Information about the
-   62 ; registered repositories and installed plugins will be stored here.
-   63 ; The OpenSim.exe process must have R/W access to the location.
58 MaxPoolThreads = 15 64 ; RegistryLocation = "."
59   65  
60 ; ## 66 ; ##
Line 61... Line 67...
61 ; ## CLIENTS 67 ; ## CLIENTS
Line 91... Line 97...
91   97  
92 ; Maximum number of position, rotation and scale changes for each prim that the simulator will store for later undos 98 ; Maximum number of position, rotation and scale changes for each prim that the simulator will store for later undos
93 ; Increasing this number will increase memory usage. 99 ; Increasing this number will increase memory usage.
Line 94... Line 100...
94 MaxPrimUndos = 20 100 MaxPrimUndos = 20
95   101  
Line 96... Line 102...
96 ; Maximum size of non physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMax!). 102 ; Maximum size of non physical prims. Affects resizing of existing prims. This can be overridden in the region config file (as NonPhysicalPrimMax!).
97 NonPhysicalPrimMax = 256 103 NonPhysicalPrimMax = 256
Line 98... Line 104...
98   104  
99 ; Maximum size of physical prims. Affects resizing of existing prims. This can be overriden in the region config file. 105 ; Maximum size of physical prims. Affects resizing of existing prims. This can be overridden in the region config file.
100 PhysicalPrimMax = 10 106 PhysicalPrimMax = 64
Line 101... Line 107...
101   107  
102 ; If a viewer attempts to rez a prim larger than the non-physical or physical prim max, clamp the dimensions to the appropriate maximum 108 ; If a viewer attempts to rez a prim larger than the non-physical or physical prim max, clamp the dimensions to the appropriate maximum
103 ; This can be overriden in the region config file. 109 ; This can be overridden in the region config file.
Line 104... Line 110...
104 ClampPrimSize = false 110 ClampPrimSize = false
105 111
106 ; Maximum number of prims allowable in a linkset. Affects creating new linksets. Ignored if less than or equal to zero. 112 ; Maximum number of prims allowable in a linkset. Affects creating new linksets. Ignored if less than or equal to zero.
Line 284... Line 290...
284 ; When set to True (the default) items deleted from the scene will be 290 ; When set to True (the default) items deleted from the scene will be
285 ; stored in the user's trash or lost and found folder. When set to 291 ; stored in the user's trash or lost and found folder. When set to
286 ; False items will be removed from the scene permanently 292 ; False items will be removed from the scene permanently
287 UseTrashOnDelete = True 293 UseTrashOnDelete = True
Line -... Line 294...
-   294  
-   295 ; #
-   296 ; # Logging
-   297 ; #
-   298  
-   299 ; Force logging when the thread pool approaches an overload condition
-   300 ; Provides useful data for post-mortem analysis even in a production
-   301 ; system with reduced logging
Line 288... Line 302...
288   302 LogOverloads = True
289   303  
290 [Map] 304 [Map]
Line 514... Line 528...
514 ; default 528 ; default
515 ; 529 ;
516 enable_adaptive_throttles = true 530 enable_adaptive_throttles = true
Line 517... Line 531...
517   531  
518 ; Per-client bytes per second rates for the various throttle categories. 532 ; Per-client bytes per second rates for the various throttle categories.
519 ; These are default values that will be overriden by clients. These 533 ; These are default values that will be overridden by clients. These
520 ; defaults are approximately equivalent to the throttles set by the Imprudence 534 ; defaults are approximately equivalent to the throttles set by the Imprudence
Line 521... Line 535...
521 ; viewer when maximum bandwidth is set to 350kbps 535 ; viewer when maximum bandwidth is set to 350kbps
522   536  
Line 1007... Line 1021...
1007 ; magnifications use lots of memory. 1021 ; magnifications use lots of memory.
1008 TerrainMeshMagnification = 2 1022 TerrainMeshMagnification = 2
Line 1009... Line 1023...
1009   1023  
1010 ; Avatar physics height adjustments. 1024 ; Avatar physics height adjustments.
1011 ; http://opensimulator.org/wiki/BulletSim#Adjusting_Avatar_Height 1025 ; http://opensimulator.org/wiki/BulletSim#Adjusting_Avatar_Height
1012 AvatarHeightLowFudge = -0.2 ; Adjustment at low end of height range 1026 AvatarHeightLowFudge = 0 ; Adjustment at low end of height range
1013 AvatarHeightMidFudge = 0.1 ; Adjustment at mid point of avatar height range 1027 AvatarHeightMidFudge = 0 ; Adjustment at mid point of avatar height range
Line 1014... Line 1028...
1014 AvatarHeightHighFudge = 0.1 ; Adjustment at high end of height range 1028 AvatarHeightHighFudge = 0 ; Adjustment at high end of height range
1015   1029  
1016 ; Default linkset implmentation 1030 ; Default linkset implmentation
1017 ; 'Constraint' uses physics constraints to hold linkset together. 'Compound' 1031 ; 'Constraint' uses physics constraints to hold linkset together. 'Compound'
Line 1412... Line 1426...
1412 WriteScriptSourceToDebugFile = false 1426 WriteScriptSourceToDebugFile = false
Line 1413... Line 1427...
1413   1427  
1414 ; Default language for scripts 1428 ; Default language for scripts
Line 1415... Line 1429...
1415 DefaultCompileLanguage = lsl 1429 DefaultCompileLanguage = lsl
1416   1430  
1417 ; List of allowed languages (lsl,vb,js,cs) 1431 ; List of allowed languages (lsl,vb,cs)
1418 ; AllowedCompilers=lsl,cs,js,vb. 1432 ; AllowedCompilers=lsl,cs,vb
Line 1419... Line 1433...
1419 ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk. 1433 ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
1420 AllowedCompilers=lsl 1434 AllowedCompilers=lsl
Line 1489... Line 1503...
1489 ; up the system to malicious scripters 1503 ; up the system to malicious scripters
1490 ; NotecardLineReadCharsMax = 255 1504 ; NotecardLineReadCharsMax = 255
Line 1491... Line 1505...
1491   1505  
1492 ; Minimum settable timer interval. Any timer setting less than this is 1506 ; Minimum settable timer interval. Any timer setting less than this is
1493 ; rounded up to this minimum interval. 1507 ; rounded up to this minimum interval.
Line 1494... Line 1508...
1494 ; MinTimerInterval = 0.01 1508 ; MinTimerInterval = 0.05
1495   1509  
1496 ; Sensor settings 1510 ; Sensor settings
Line 1789... Line 1803...
1789   1803  
1790 [ServiceThrottle] 1804 [ServiceThrottle]
1791 ;; Default time interval (in ms) for the throttle service thread to wake up 1805 ;; Default time interval (in ms) for the throttle service thread to wake up
Line -... Line 1806...
-   1806 Interval = 5000
-   1807  
-   1808 [Dwell]
Line 1792... Line 1809...
1792 Interval = 5000 1809 ;; This enables the built in basic dwell module
1793   1810 DwellModule = DefaultDwellModule