diff options
author | Justin Clark-Casey (justincc) | 2011-10-22 02:47:53 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-22 02:47:53 +0100 |
commit | 229ca09b7956f51fc2618dc35dff87cf04bf0fc9 (patch) | |
tree | 2bf2a3e29f37fd071ee0a69d473ad9f89889765a | |
parent | Get UUIDGatherer to scan notecards in the graph for asset uuids. (diff) | |
download | opensim-SC_OLD-229ca09b7956f51fc2618dc35dff87cf04bf0fc9.zip opensim-SC_OLD-229ca09b7956f51fc2618dc35dff87cf04bf0fc9.tar.gz opensim-SC_OLD-229ca09b7956f51fc2618dc35dff87cf04bf0fc9.tar.bz2 opensim-SC_OLD-229ca09b7956f51fc2618dc35dff87cf04bf0fc9.tar.xz |
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=4850
-rw-r--r-- | bin/config-include/GridCommon.ini.example | 2 | ||||
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 34 |
2 files changed, 19 insertions, 17 deletions
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index c5598c0..72cd606 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example | |||
@@ -1,3 +1,5 @@ | |||
1 | ; This is the main configuration file for an instance of OpenSim running in grid mode | ||
2 | |||
1 | [DatabaseService] | 3 | [DatabaseService] |
2 | ; | 4 | ; |
3 | ; ### Choose the DB | 5 | ; ### Choose the DB |
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index c057887..b6b1eb5 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example | |||
@@ -1,4 +1,4 @@ | |||
1 | ; This is the main configuration file for standalone OpenSim instances | 1 | ; This is the main configuration file for an instance of OpenSim running in standalone mode |
2 | 2 | ||
3 | [DatabaseService] | 3 | [DatabaseService] |
4 | ; | 4 | ; |
@@ -24,6 +24,22 @@ | |||
24 | ;StorageProvider = "OpenSim.Data.MSSQL.dll" | 24 | ;StorageProvider = "OpenSim.Data.MSSQL.dll" |
25 | ;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;" | 25 | ;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;" |
26 | 26 | ||
27 | [Modules] | ||
28 | ;; Choose one cache module and the corresponding config file, if it exists. | ||
29 | ;; Copy the config .example file into your own .ini file and alter that | ||
30 | ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained. | ||
31 | |||
32 | AssetCaching = "FlotsamAssetCache" | ||
33 | Include-FlotsamCache = "config-include/FlotsamCache.ini" | ||
34 | |||
35 | ;AssetCaching = "CenomeMemoryAssetCache" | ||
36 | ;Include-CenomeCache = "config-include/CenomeCache.ini" | ||
37 | |||
38 | ;AssetCaching = "GlynnTuckerAssetCache" | ||
39 | |||
40 | ;; Authorization is not on by default, as it depends on external php | ||
41 | ;AuthorizationServices = "LocalAuthorizationServicesConnector" | ||
42 | |||
27 | [AssetService] | 43 | [AssetService] |
28 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | 44 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" |
29 | AssetLoaderArgs = "assets/AssetSets.xml" | 45 | AssetLoaderArgs = "assets/AssetSets.xml" |
@@ -42,22 +58,6 @@ | |||
42 | ;; uncomment the next line. You may want to do this on sims that have licensed content. | 58 | ;; uncomment the next line. You may want to do this on sims that have licensed content. |
43 | ; OutboundPermission = False | 59 | ; OutboundPermission = False |
44 | 60 | ||
45 | [Modules] | ||
46 | ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. | ||
47 | ;; Copy the config .example file into your own .ini file and change configs there | ||
48 | ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained. | ||
49 | |||
50 | AssetCaching = "FlotsamAssetCache" | ||
51 | Include-FlotsamCache = "config-include/FlotsamCache.ini" | ||
52 | |||
53 | ;AssetCaching = "GlynnTuckerAssetCache" | ||
54 | |||
55 | ; AssetCaching = "CenomeMemoryAssetCache" | ||
56 | ; Include-CenomeCache = "config-include/CenomeCache.ini" | ||
57 | |||
58 | ;; Authorization is not on by default, as it depends on external php | ||
59 | ;AuthorizationServices = "LocalAuthorizationServicesConnector" | ||
60 | |||
61 | [GridService] | 61 | [GridService] |
62 | ;; For in-memory region storage (default) | 62 | ;; For in-memory region storage (default) |
63 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" | 63 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" |