diff options
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/SimianGrid.ini | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/bin/config-include/SimianGrid.ini b/bin/config-include/SimianGrid.ini new file mode 100644 index 0000000..af33860 --- /dev/null +++ b/bin/config-include/SimianGrid.ini | |||
@@ -0,0 +1,70 @@ | |||
1 | [Modules] | ||
2 | GridServices = "OpenSim.Services.Connectors.dll:SimianGridServiceConnector" | ||
3 | PresenceServices = "OpenSim.Services.Connectors.dll:SimianPresenceServiceConnector" | ||
4 | UserAccountServices = "OpenSim.Services.Connectors.dll:SimianGridUserAccountServiceConnector" | ||
5 | AuthenticationServices = "OpenSim.Services.Connectors.dll:SimianAuthenticationServiceConnector" | ||
6 | AssetServices = "OpenSim.Services.Connectors.dll:SimianAssetServiceConnector" | ||
7 | InventoryServices = "OpenSim.Services.Connectors.dll:SimianInventoryServiceConnector" | ||
8 | AvatarServices = "OpenSim.Services.Connectors.dll:SimianAvatarServiceConnector" | ||
9 | |||
10 | NeighbourServices = "RemoteNeighbourServicesConnector" | ||
11 | SimulationServices = "RemoteSimulationConnectorModule" | ||
12 | EntityTransferModule = "BasicEntityTransferModule" | ||
13 | InventoryAccessModule = "BasicInventoryAccessModule" | ||
14 | |||
15 | LandServiceInConnector = true | ||
16 | NeighbourServiceInConnector = true | ||
17 | SimulationServiceInConnector = true | ||
18 | LibraryModule = false | ||
19 | |||
20 | AssetCaching = "FlotsamAssetCache" | ||
21 | |||
22 | [Friends] | ||
23 | Connector = "OpenSim.Services.Connectors.dll:SimianFriendsServiceConnector" | ||
24 | |||
25 | [GridService] | ||
26 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | ||
27 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" | ||
28 | GridServerURI = "http://localhost/Grid/" | ||
29 | |||
30 | [LibraryService] | ||
31 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
32 | LibraryName = "OpenSim Library" | ||
33 | DefaultLibrary = "./inventory/Libraries.xml" | ||
34 | |||
35 | [AssetService] | ||
36 | DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | ||
37 | AssetLoaderArgs = "assets/AssetSets.xml" | ||
38 | AssetServerURI = "http://localhost/Grid/?id=" | ||
39 | |||
40 | [InventoryService] | ||
41 | InventoryServerURI = "http://localhost/Grid/" | ||
42 | |||
43 | [AvatarService] | ||
44 | AvatarServerURI = "http://localhost/Grid/" | ||
45 | |||
46 | [PresenceService] | ||
47 | PresenceServerURI = "http://localhost/Grid/" | ||
48 | |||
49 | [UserAccountService] | ||
50 | UserAccountServerURI = "http://localhost/Grid/" | ||
51 | |||
52 | [AuthenticationService] | ||
53 | AuthenticationServerURI = "http://localhost/Grid/" | ||
54 | |||
55 | [FriendsService] | ||
56 | FriendsServerURI = "http://localhost/Grid/" | ||
57 | |||
58 | [AssetCache] | ||
59 | CacheDirectory = ./assetcache | ||
60 | LogLevel = 0 | ||
61 | HitRateDisplay = 100 | ||
62 | MemoryCacheEnabled = false | ||
63 | ; How long {in hours} to keep assets cached in memory, .5 == 30 minutes | ||
64 | MemoryCacheTimeout = 2 | ||
65 | ; How long {in hours} to keep assets cached on disk, .5 == 30 minutes | ||
66 | ; Specify 0 if you do not want your disk cache to expire | ||
67 | FileCacheTimeout = 0 | ||
68 | ; How often {in hours} should the disk be checked for expired filed | ||
69 | ; Specify 0 to disable expiration checking | ||
70 | FileCleanupTimer = 0 ;roughly every 10 minutes | ||