aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config-include
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-22 02:51:41 +0100
committerJustin Clark-Casey (justincc)2011-10-22 02:51:41 +0100
commit655aee44c4236d7023b9274645bf033b87b17131 (patch)
tree6d45c9098e9840a4a36dd3701436b87b55e598f2 /bin/config-include
parentMake config comments about choosing assetcache modules clearer. (diff)
downloadopensim-SC_OLD-655aee44c4236d7023b9274645bf033b87b17131.zip
opensim-SC_OLD-655aee44c4236d7023b9274645bf033b87b17131.tar.gz
opensim-SC_OLD-655aee44c4236d7023b9274645bf033b87b17131.tar.bz2
opensim-SC_OLD-655aee44c4236d7023b9274645bf033b87b17131.tar.xz
Rename some of the example commented out server names to mygridserver.com like all the others.
This is to make it easier to change all these names at once, where all grids services are running from the same location. Also rearranges some lines in [Modules] so that StandaloneCommon.ini.example and GridCommon.ini.exmaple are consistent.
Diffstat (limited to 'bin/config-include')
-rw-r--r--bin/config-include/GridCommon.ini.example44
1 files changed, 21 insertions, 23 deletions
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example
index 72cd606..e368249 100644
--- a/bin/config-include/GridCommon.ini.example
+++ b/bin/config-include/GridCommon.ini.example
@@ -24,21 +24,39 @@
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[AssetService] 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 adapt 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"
28 37
38 ;AssetCaching = "GlynnTuckerAssetCache"
39
40 ;; Optionally, the port for the LLProxyLoginModule module can be changed
41 ;Setup_LLProxyLoginModule = "9090/"
42
43 ;; Authorization is not on by default, as it depends on external php
44 ;AuthorizationServices = "RemoteAuthorizationServicesConnector"
45
46[AssetService]
29 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 47 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
30 AssetLoaderArgs = "assets/AssetSets.xml" 48 AssetLoaderArgs = "assets/AssetSets.xml"
31 49
32 ; 50 ;
33 ; Change this to your grid-wide asset server. Do not add a slash to the end of any of these addresses. 51 ; Change this to your grid-wide asset server. Do not add a slash to the end of any of these addresses.
34 ; 52 ;
35 AssetServerURI = "http://myassetserver.com:8003" 53 AssetServerURI = "http://mygridserver.com:8003"
36 54
37[InventoryService] 55[InventoryService]
38 ; 56 ;
39 ; Change this to your grid-wide inventory server 57 ; Change this to your grid-wide inventory server
40 ; 58 ;
41 InventoryServerURI = "http://myinventoryserver.com:8003" 59 InventoryServerURI = "http://mygridserver.com:8003"
42 60
43[GridService] 61[GridService]
44 ; 62 ;
@@ -120,23 +138,3 @@
120 138
121[MapImageService] 139[MapImageService]
122 MapImageServerURI = "http://mygridserver.com:8003" 140 MapImageServerURI = "http://mygridserver.com:8003"
123
124[Modules]
125 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
126 ;; Copy the config .example file into your own .ini file and change configs there
127 ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
128
129 AssetCaching = "FlotsamAssetCache"
130 Include-FlotsamCache = "config-include/FlotsamCache.ini"
131
132 ;AssetCaching = "CenomeMemoryAssetCache"
133 ;Include-CenomeCache = "config-include/CenomeCache.ini"
134
135 ;AssetCaching = "GlynnTuckerAssetCache"
136
137 ;; Optionally, the port for the LLProxyLoginModule module can be changed
138
139 ;Setup_LLProxyLoginModule = "9090/"
140
141 ;; Authorization is not on by default, as it depends on external php
142 ;AuthorizationServices = "RemoteAuthorizationServicesConnector"