diff options
Added a few pre-packaged configurations to make it easier for people to configure their sims.
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 58 |
1 files changed, 15 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 | ||