aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
authordiva2009-05-22 22:48:25 +0000
committerdiva2009-05-22 22:48:25 +0000
commit92d5b1560d0489b16b5a6c57df11429ff1caf66f (patch)
tree92a8e9a274cdf6aba58bdf8797adc6457d1207b2 /bin
parent* Reintroduce save iar test, which wasn't working because the asset service h... (diff)
downloadopensim-SC_OLD-92d5b1560d0489b16b5a6c57df11429ff1caf66f.zip
opensim-SC_OLD-92d5b1560d0489b16b5a6c57df11429ff1caf66f.tar.gz
opensim-SC_OLD-92d5b1560d0489b16b5a6c57df11429ff1caf66f.tar.bz2
opensim-SC_OLD-92d5b1560d0489b16b5a6c57df11429ff1caf66f.tar.xz
Added a few pre-packaged configurations to make it easier for people to configure their sims.
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.ini.example58
-rw-r--r--bin/config-include/Grid.ini6
-rw-r--r--bin/config-include/GridCommon.ini17
-rw-r--r--bin/config-include/GridHypergrid.ini10
-rw-r--r--bin/config-include/Standalone.ini10
-rw-r--r--bin/config-include/StandaloneCommon.ini21
-rw-r--r--bin/config-include/StandaloneHypergrid.ini11
7 files changed, 90 insertions, 43 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index b3022f4..02047cf 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1221,48 +1221,20 @@
1221 ;FullUpdateRate=14 1221 ;FullUpdateRate=14
1222 1222
1223 ;PacketMTU = 1400 1223 ;PacketMTU = 1400
1224
1225 ; The following is the configuration section for the new style grid servers
1226 ; If you don't know what this is, don't enable it. It will eat your data,
1227 ; format your hard drive and make all meat in your fridge spoil.
1228 ; You have been warned.
1229 ; Some of this is starting to work!
1230[Modules]
1231 ; Choose one
1232 AssetServices = "LocalAssetServicesConnector"
1233 ;AssetServices = "RemoteAssetServicesConnector"
1234 ;AssetServices = "HGAssetBroker"
1235
1236 ; Leave this commented out, the cache is under investigation
1237 ;AssetCache = "CoreAssetCache"
1238
1239 ; Choose one
1240 ;UserServices = "LocalUserServicesConnector"
1241 ;UserServices = "RemoteUserServicesConnector"
1242
1243
1244[AssetService]
1245 ; Parameters for local assets, formerly known as "standalone"
1246 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
1247 StorageProvider = "OpenSim.Data.SQLite.dll"
1248 ;StorageProvider = "OpenSim.Data.MySQL.dll"
1249 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim;"
1250 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
1251 AssetLoaderArgs = "assets/AssetSets.xml"
1252
1253 ; Parameters for remote assets, formerly known as "grid"
1254 ;AssetServerURI = "http://localhost:8003/"
1255
1256 ; Paremeters for the Hypergrid connector
1257 1224
1258 ;; Parameters for the HG Broker
1259 ; Use this one if you have a standalone grid
1260 LocalGridAssetService = "OpenSim.Services.AssetService.dll:AssetService"
1261 ; Use this one if this sim is connected to a grid-wide asset server
1262 ;LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServiceConnector"
1263 HypergridAssetService = "OpenSim.Services.AssetService.dll:HGAssetService"
1264
1265[AssetCache]
1266 ; Number of buckets for assets
1267 ;CacheBuckets = 32768
1268 1225
1226 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1227 ;; The following is the configuration section for the new style services
1228 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1229[Architecture]
1230 ; Choose exactly one and only one of the architectures below.
1231
1232 Include-Standalone = "config-include/Standalone.ini"
1233 ;Include-HGStandalone = "config-include/StandaloneHypergrid.ini"
1234 ;Include-Grid = "config-include/Grid.ini"
1235 ;Include-Hypergrid = "config-include/GridHypergrid.ini"
1236
1237 ; Then edit
1238 ; config-include/StandaloneCommon.ini (if you're in standlone) OR
1239 ; config-include/GridCommon.ini (if you're connected to a grid)
1240 ; to customize your data
diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini
new file mode 100644
index 0000000..7f9db1c
--- /dev/null
+++ b/bin/config-include/Grid.ini
@@ -0,0 +1,6 @@
1[Includes]
2 Include-Common = "config-include/GridCommon.ini"
3
4[Modules]
5 AssetServices = "RemoteAssetServicesConnector"
6
diff --git a/bin/config-include/GridCommon.ini b/bin/config-include/GridCommon.ini
new file mode 100644
index 0000000..0e95f35
--- /dev/null
+++ b/bin/config-include/GridCommon.ini
@@ -0,0 +1,17 @@
1[Modules]
2 AssetCaching = "CoreAssetCache"
3
4[AssetCache]
5 ; Number of buckets for assets
6 CacheBuckets = 32768
7
8[AssetService]
9
10 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
11 AssetLoaderArgs = "assets/AssetSets.xml"
12
13 ;
14 ; change this to your grid-wide asset server
15 ;
16 AssetServerURI = "http://myassetserver.com:8003"
17
diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini
new file mode 100644
index 0000000..5a93b79
--- /dev/null
+++ b/bin/config-include/GridHypergrid.ini
@@ -0,0 +1,10 @@
1[Includes]
2 Include-Common = "config-include/GridCommon.ini"
3
4[Modules]
5 AssetServices = "HGAssetBroker"
6
7
8[AssetService]
9 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector"
10 HypergridAssetService = "OpenSim.Services.AssetService.dll:HGAssetService"
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
new file mode 100644
index 0000000..c35cda9
--- /dev/null
+++ b/bin/config-include/Standalone.ini
@@ -0,0 +1,10 @@
1[Includes]
2 Include-Common = "config-include/StandaloneCommon.ini"
3
4[Modules]
5 AssetServices = "LocalAssetServicesConnector"
6
7
8[AssetService]
9 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
10
diff --git a/bin/config-include/StandaloneCommon.ini b/bin/config-include/StandaloneCommon.ini
new file mode 100644
index 0000000..a14c653
--- /dev/null
+++ b/bin/config-include/StandaloneCommon.ini
@@ -0,0 +1,21 @@
1[Modules]
2 AssetCaching = "CoreAssetCache"
3
4[AssetCache]
5 ; Number of buckets for assets
6 CacheBuckets = 16384
7
8[AssetService]
9 ;
10 ;### Choose the DB
11 ;
12 ;--- For SQLite
13 StorageProvider = "OpenSim.Data.SQLite.dll"
14 ;--- For MySql
15 ;StorageProvider = "OpenSim.Data.MySQL.dll"
16 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;"
17
18 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
19 AssetLoaderArgs = "assets/AssetSets.xml"
20
21
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
new file mode 100644
index 0000000..eaee63d
--- /dev/null
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -0,0 +1,11 @@
1[Includes]
2 Include-Common = "config-include/StandaloneCommon.ini"
3
4[Modules]
5 AssetServices = "HGAssetBroker"
6
7
8[AssetService]
9 LocalGridAssetService = "OpenSim.Services.AssetService.dll:AssetService"
10 HypergridAssetService = "OpenSim.Services.AssetService.dll:HGAssetService"
11