Make config comments about choosing assetcache modules clearer.
OpenSim needs an asset cache. Running without one will cause problems. Thanks to Ai Austin for the suggestions in http://opensimulator.org/mantis/view.php?id=4850remove-scene-viewer
parent
ffdf59a57c
commit
229ca09b79
|
@ -1,3 +1,5 @@
|
||||||
|
; This is the main configuration file for an instance of OpenSim running in grid mode
|
||||||
|
|
||||||
[DatabaseService]
|
[DatabaseService]
|
||||||
;
|
;
|
||||||
; ### Choose the DB
|
; ### Choose the DB
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; This is the main configuration file for standalone OpenSim instances
|
; This is the main configuration file for an instance of OpenSim running in standalone mode
|
||||||
|
|
||||||
[DatabaseService]
|
[DatabaseService]
|
||||||
;
|
;
|
||||||
|
@ -24,6 +24,22 @@
|
||||||
;StorageProvider = "OpenSim.Data.MSSQL.dll"
|
;StorageProvider = "OpenSim.Data.MSSQL.dll"
|
||||||
;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;"
|
;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;"
|
||||||
|
|
||||||
|
[Modules]
|
||||||
|
;; Choose one cache module and the corresponding config file, if it exists.
|
||||||
|
;; Copy the config .example file into your own .ini file and alter that
|
||||||
|
;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
|
||||||
|
|
||||||
|
AssetCaching = "FlotsamAssetCache"
|
||||||
|
Include-FlotsamCache = "config-include/FlotsamCache.ini"
|
||||||
|
|
||||||
|
;AssetCaching = "CenomeMemoryAssetCache"
|
||||||
|
;Include-CenomeCache = "config-include/CenomeCache.ini"
|
||||||
|
|
||||||
|
;AssetCaching = "GlynnTuckerAssetCache"
|
||||||
|
|
||||||
|
;; Authorization is not on by default, as it depends on external php
|
||||||
|
;AuthorizationServices = "LocalAuthorizationServicesConnector"
|
||||||
|
|
||||||
[AssetService]
|
[AssetService]
|
||||||
DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
|
DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
|
||||||
AssetLoaderArgs = "assets/AssetSets.xml"
|
AssetLoaderArgs = "assets/AssetSets.xml"
|
||||||
|
@ -42,22 +58,6 @@
|
||||||
;; uncomment the next line. You may want to do this on sims that have licensed content.
|
;; uncomment the next line. You may want to do this on sims that have licensed content.
|
||||||
; OutboundPermission = False
|
; OutboundPermission = False
|
||||||
|
|
||||||
[Modules]
|
|
||||||
;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
|
|
||||||
;; Copy the config .example file into your own .ini file and change configs there
|
|
||||||
;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
|
|
||||||
|
|
||||||
AssetCaching = "FlotsamAssetCache"
|
|
||||||
Include-FlotsamCache = "config-include/FlotsamCache.ini"
|
|
||||||
|
|
||||||
;AssetCaching = "GlynnTuckerAssetCache"
|
|
||||||
|
|
||||||
; AssetCaching = "CenomeMemoryAssetCache"
|
|
||||||
; Include-CenomeCache = "config-include/CenomeCache.ini"
|
|
||||||
|
|
||||||
;; Authorization is not on by default, as it depends on external php
|
|
||||||
;AuthorizationServices = "LocalAuthorizationServicesConnector"
|
|
||||||
|
|
||||||
[GridService]
|
[GridService]
|
||||||
;; For in-memory region storage (default)
|
;; For in-memory region storage (default)
|
||||||
StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
|
StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
|
||||||
|
|
Loading…
Reference in New Issue