diff options
Diffstat (limited to 'bin/config-include')
-rw-r--r-- | bin/config-include/Grid.ini | 29 | ||||
-rw-r--r-- | bin/config-include/GridCommon.ini.example | 32 | ||||
-rw-r--r-- | bin/config-include/GridHypergrid.ini | 28 | ||||
-rw-r--r-- | bin/config-include/Standalone.ini | 64 | ||||
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 18 | ||||
-rw-r--r-- | bin/config-include/StandaloneHypergrid.ini | 102 |
6 files changed, 234 insertions, 39 deletions
diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini index 5b19130..9dff325 100644 --- a/bin/config-include/Grid.ini +++ b/bin/config-include/Grid.ini | |||
@@ -10,15 +10,30 @@ | |||
10 | [Modules] | 10 | [Modules] |
11 | AssetServices = "RemoteAssetServicesConnector" | 11 | AssetServices = "RemoteAssetServicesConnector" |
12 | InventoryServices = "RemoteInventoryServicesConnector" | 12 | InventoryServices = "RemoteInventoryServicesConnector" |
13 | AuthorizationServices = "RemoteAuthorizationServicesConnector" | ||
14 | NeighbourServices = "RemoteNeighbourServicesConnector" | ||
15 | GridServices = "RemoteGridServicesConnector" | 13 | GridServices = "RemoteGridServicesConnector" |
16 | NeighbourServiceInConnector = true | 14 | AvatarServices = "RemoteAvatarServicesConnector" |
15 | NeighbourServices = "RemoteNeighbourServicesConnector" | ||
16 | AuthenticationServices = "RemoteAuthenticationServicesConnector" | ||
17 | PresenceServices = "RemotePresenceServicesConnector" | ||
18 | UserAccountServices = "RemoteUserAccountServicesConnector" | ||
19 | SimulationServices = "RemoteSimulationConnectorModule" | ||
20 | EntityTransferModule = "BasicEntityTransferModule" | ||
21 | InventoryAccessModule = "BasicInventoryAccessModule" | ||
17 | LandServiceInConnector = true | 22 | LandServiceInConnector = true |
18 | LLProxyLoginModule = true | 23 | NeighbourServiceInConnector = true |
24 | SimulationServiceInConnector = true | ||
25 | LibraryModule = true | ||
26 | |||
19 | 27 | ||
20 | [GridService] | 28 | [GridService] |
21 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 29 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
22 | ; for the LocalGridServicesConnector which is used by the Remote one | 30 | ; for the LocalGridServicesConnector which is used by the Remote one |
23 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" | 31 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" |
24 | \ No newline at end of file | 32 | |
33 | [LibraryService] | ||
34 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
35 | LibraryName = "OpenSim Library" | ||
36 | DefaultLibrary = "./inventory/Libraries.xml" | ||
37 | |||
38 | [Friends] | ||
39 | Connector = "OpenSim.Services.Connectors.dll:FriendsServicesConnector" | ||
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 6da0f1e..4717561 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example | |||
@@ -20,6 +20,38 @@ | |||
20 | ; change this to your grid-wide grid server | 20 | ; change this to your grid-wide grid server |
21 | ; | 21 | ; |
22 | GridServerURI = "http://mygridserver.com:8003" | 22 | GridServerURI = "http://mygridserver.com:8003" |
23 | ;AllowHypergridMapSearch = true | ||
24 | |||
25 | [AvatarService] | ||
26 | ; | ||
27 | ; change this to your grid-wide grid server | ||
28 | ; | ||
29 | AvatarServerURI = "http://mygridserver.com:8003" | ||
30 | |||
31 | [PresenceService] | ||
32 | ; | ||
33 | ; change this to your grid-wide presence server | ||
34 | ; | ||
35 | PresenceServerURI = "http://mygridserver.com:8003" | ||
36 | |||
37 | [UserAccountService] | ||
38 | ; | ||
39 | ; change this to your grid-wide user accounts server | ||
40 | ; | ||
41 | UserAccountServerURI = "http://mygridserver.com:8003" | ||
42 | |||
43 | [AuthenticationService] | ||
44 | ; | ||
45 | ; change this to your grid-wide authentication server | ||
46 | ; | ||
47 | AuthenticationServerURI = "http://mygridserver.com:8003" | ||
48 | |||
49 | [FriendsService] | ||
50 | ; | ||
51 | ; change this to your grid-wide friends server | ||
52 | ; | ||
53 | FriendsServerURI = "http://mygridserver.com:8003" | ||
54 | |||
23 | 55 | ||
24 | [Modules] | 56 | [Modules] |
25 | ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. | 57 | ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. |
diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini index a5fe6e9..b567817 100644 --- a/bin/config-include/GridHypergrid.ini +++ b/bin/config-include/GridHypergrid.ini | |||
@@ -7,18 +7,23 @@ | |||
7 | [Includes] | 7 | [Includes] |
8 | Include-Common = "config-include/GridCommon.ini" | 8 | Include-Common = "config-include/GridCommon.ini" |
9 | 9 | ||
10 | [Startup] | ||
11 | hypergrid = true | ||
12 | |||
13 | [Modules] | 10 | [Modules] |
14 | AssetServices = "HGAssetBroker" | 11 | AssetServices = "HGAssetBroker" |
15 | InventoryServices = "HGInventoryBroker" | 12 | InventoryServices = "HGInventoryBroker" |
13 | GridServices = "RemoteGridServicesConnector" | ||
14 | AvatarServices = "RemoteAvatarServicesConnector" | ||
16 | NeighbourServices = "RemoteNeighbourServicesConnector" | 15 | NeighbourServices = "RemoteNeighbourServicesConnector" |
17 | GridServices = "HGGridServicesConnector" | 16 | AuthenticationServices = "RemoteAuthenticationServicesConnector" |
18 | NeighbourServiceInConnector = true | 17 | AuthorizationServices = "LocalAuthorizationServicesConnector" |
18 | PresenceServices = "RemotePresenceServicesConnector" | ||
19 | UserAccountServices = "RemoteUserAccountServicesConnector" | ||
20 | SimulationServices = "RemoteSimulationConnectorModule" | ||
21 | EntityTransferModule = "HGEntityTransferModule" | ||
22 | InventoryAccessModule = "HGInventoryAccessModule" | ||
19 | LandServiceInConnector = true | 23 | LandServiceInConnector = true |
20 | HypergridServiceInConnector = true | 24 | NeighbourServiceInConnector = true |
21 | LLProxyLoginModule = true | 25 | SimulationServiceInConnector = true |
26 | LibraryModule = true | ||
22 | 27 | ||
23 | [AssetService] | 28 | [AssetService] |
24 | LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" | 29 | LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" |
@@ -29,9 +34,12 @@ | |||
29 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" | 34 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" |
30 | 35 | ||
31 | [GridService] | 36 | [GridService] |
32 | ; for the HGGridServicesConnector to instantiate | ||
33 | GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" | ||
34 | ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, | 37 | ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, |
35 | ; which in turn uses this | 38 | ; which in turn uses this |
36 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 39 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
37 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" | 40 | StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" |
41 | |||
42 | AllowHypergridMapSearch = true | ||
43 | |||
44 | [Friends] | ||
45 | Connector = "OpenSim.Services.Connectors.dll:FriendsServicesConnector" | ||
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini index 35ee01e..3011370 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini | |||
@@ -4,16 +4,20 @@ | |||
4 | ;; which you can copy and change. | 4 | ;; which you can copy and change. |
5 | ;; | 5 | ;; |
6 | 6 | ||
7 | [Includes] | ||
8 | Include-Common = "config-include/StandaloneCommon.ini" | ||
9 | |||
10 | [Modules] | 7 | [Modules] |
11 | AssetServices = "LocalAssetServicesConnector" | 8 | AssetServices = "LocalAssetServicesConnector" |
12 | InventoryServices = "LocalInventoryServicesConnector" | 9 | InventoryServices = "LocalInventoryServicesConnector" |
13 | NeighbourServices = "LocalNeighbourServicesConnector" | 10 | NeighbourServices = "LocalNeighbourServicesConnector" |
14 | AuthorizationServices = "LocalAuthorizationServicesConnector" | 11 | AuthenticationServices = "LocalAuthenticationServicesConnector" |
15 | GridServices = "LocalGridServicesConnector" | 12 | GridServices = "LocalGridServicesConnector" |
13 | PresenceServices = "LocalPresenceServicesConnector" | ||
14 | UserAccountServices = "LocalUserAccountServicesConnector" | ||
15 | SimulationServices = "LocalSimulationConnectorModule" | ||
16 | AvatarServices = "LocalAvatarServicesConnector" | ||
17 | EntityTransferModule = "BasicEntityTransferModule" | ||
18 | InventoryAccessModule = "BasicInventoryAccessModule" | ||
16 | LibraryModule = true | 19 | LibraryModule = true |
20 | LLLoginServiceInConnector = true | ||
17 | 21 | ||
18 | [AssetService] | 22 | [AssetService] |
19 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" | 23 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" |
@@ -21,9 +25,61 @@ | |||
21 | [InventoryService] | 25 | [InventoryService] |
22 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | 26 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" |
23 | 27 | ||
28 | [LibraryService] | ||
29 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
30 | LibraryName = "OpenSim Library" | ||
31 | DefaultLibrary = "./inventory/Libraries.xml" | ||
32 | |||
33 | [AvatarService] | ||
34 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
35 | ConnectionString = "URI=file:avatars.db,version=3" | ||
36 | |||
24 | [AuthorizationService] | 37 | [AuthorizationService] |
25 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" | 38 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" |
26 | 39 | ||
40 | [AuthenticationService] | ||
41 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
42 | ConnectionString = "URI=file:auth.db,version=3" | ||
43 | |||
27 | [GridService] | 44 | [GridService] |
28 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 45 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
29 | Realm = "regions" | 46 | Realm = "regions" |
47 | StorageProvider = "OpenSim.Data.Null.dll" | ||
48 | |||
49 | [PresenceService] | ||
50 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
51 | StorageProvider = "OpenSim.Data.Null.dll" | ||
52 | |||
53 | [UserAccountService] | ||
54 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
55 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
56 | |||
57 | ;; These are for creating new accounts | ||
58 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
59 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
60 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
61 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
62 | |||
63 | [FriendsService] | ||
64 | LocalServiceModule = "OpenSim.Services.FriendsService.dll" | ||
65 | ConnectionString = "URI=file:friends.db,version=3" | ||
66 | |||
67 | [Friends] | ||
68 | Connector = "OpenSim.Services.FriendsService.dll" | ||
69 | |||
70 | [LoginService] | ||
71 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" | ||
72 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
73 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
74 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
75 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
76 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
77 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
78 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | ||
79 | |||
80 | WelcomeMessage = "Welcome, Avatar!" | ||
81 | |||
82 | |||
83 | ;; This should always be the very last thing on this file | ||
84 | [Includes] | ||
85 | Include-Common = "config-include/StandaloneCommon.ini" | ||
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index 1679f93..8e21a8c 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example | |||
@@ -39,7 +39,23 @@ | |||
39 | ;;--- For MySql region storage (alternative) | 39 | ;;--- For MySql region storage (alternative) |
40 | ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" | 40 | ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" |
41 | ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;" | 41 | ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;" |
42 | ;; Next, we can specify properties of regions, including default and fallback regions | ||
43 | ;; The syntax is: Region_<RegioName> = "<flags>" | ||
44 | ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut | ||
45 | ;; For example: | ||
46 | Region_Welcome_Area = "DefaultRegion, FallbackRegion" | ||
42 | 47 | ||
43 | [LibraryModule] | 48 | [LibraryModule] |
44 | ; Set this if you want to change the name of the OpenSim Library | 49 | ; Set this if you want to change the name of the OpenSim Library |
45 | ;LibraryName = "My World's Library" \ No newline at end of file | 50 | ;LibraryName = "My World's Library" |
51 | |||
52 | [LoginService] | ||
53 | WelcomeMessage = "Welcome, Avatar!" | ||
54 | |||
55 | HomeURI = "http://127.0.0.1:9000" | ||
56 | GatekeeperURI = "http://127.0.0.1:9000" | ||
57 | InventoryServerURI = "http://127.0.0.1:9000" | ||
58 | AssetServerURI = "http://127.0.0.1:9000" | ||
59 | |||
60 | [GatekeeperService] | ||
61 | ExternalName = "http://127.0.0.1:9000" | ||
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini index 909286c..1d8e2ef 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini | |||
@@ -3,28 +3,29 @@ | |||
3 | ;; All optional settings are in StandaloneCommon.ini.example, | 3 | ;; All optional settings are in StandaloneCommon.ini.example, |
4 | ;; which you can copy and change. | 4 | ;; which you can copy and change. |
5 | ;; | 5 | ;; |
6 | |||
7 | [Includes] | ||
8 | Include-Common = "config-include/StandaloneCommon.ini" | ||
9 | |||
10 | [Startup] | ||
11 | hypergrid = true | ||
12 | 6 | ||
13 | [Modules] | 7 | [Modules] |
14 | AssetServices = "HGAssetBroker" | 8 | AssetServices = "HGAssetBroker" |
15 | InventoryServices = "HGInventoryBroker" | 9 | InventoryServices = "HGInventoryBroker" |
16 | NeighbourServices = "RemoteNeighbourServicesConnector" | 10 | NeighbourServices = "LocalNeighbourServicesConnector" |
17 | AuthorizationServices = "LocalAuthorizationServicesConnector" | 11 | AuthenticationServices = "LocalAuthenticationServicesConnector" |
18 | GridServices = "HGGridServicesConnector" | 12 | GridServices = "LocalGridServicesConnector" |
13 | PresenceServices = "LocalPresenceServicesConnector" | ||
14 | UserAccountServices = "LocalUserAccountServicesConnector" | ||
15 | SimulationServices = "RemoteSimulationConnectorModule" | ||
16 | AvatarServices = "LocalAvatarServicesConnector" | ||
17 | EntityTransferModule = "HGEntityTransferModule" | ||
18 | InventoryAccessModule = "HGInventoryAccessModule" | ||
19 | InventoryServiceInConnector = true | 19 | InventoryServiceInConnector = true |
20 | AssetServiceInConnector = true | 20 | AssetServiceInConnector = true |
21 | HGAuthServiceInConnector = true | ||
22 | HypergridServiceInConnector = true | 21 | HypergridServiceInConnector = true |
23 | NeighbourServiceInConnector = true | 22 | NeighbourServiceInConnector = true |
24 | LibraryModule = true | 23 | LibraryModule = true |
24 | LLLoginServiceInConnector = true | ||
25 | AuthenticationServiceInConnector = true | ||
26 | SimulationServiceInConnector = true | ||
25 | 27 | ||
26 | [AssetService] | 28 | [AssetService] |
27 | ; For the AssetServiceInConnector | ||
28 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" | 29 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" |
29 | 30 | ||
30 | ; For HGAssetBroker | 31 | ; For HGAssetBroker |
@@ -32,23 +33,90 @@ | |||
32 | HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" | 33 | HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" |
33 | 34 | ||
34 | [InventoryService] | 35 | [InventoryService] |
35 | ; For the InventoryServiceInConnector | ||
36 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | 36 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" |
37 | 37 | ||
38 | ; For HGInventoryBroker | 38 | ; For HGInventoryBroker |
39 | LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | 39 | LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" |
40 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" | 40 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" |
41 | 41 | ||
42 | [AvatarService] | ||
43 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
44 | ConnectionString = "URI=file:avatars.db,version=3" | ||
45 | |||
46 | [LibraryService] | ||
47 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
48 | LibraryName = "OpenSim Library" | ||
49 | DefaultLibrary = "./inventory/Libraries.xml" | ||
50 | |||
42 | [AuthorizationService] | 51 | [AuthorizationService] |
43 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" | 52 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" |
44 | 53 | ||
45 | [AuthenticationService] | 54 | [AuthenticationService] |
46 | ; For the HGAuthServiceInConnector | 55 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
47 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" | 56 | ConnectionString = "URI=file:auth.db,version=3" |
48 | 57 | ||
49 | [GridService] | 58 | [GridService] |
50 | ; for the HGGridServicesConnector to instantiate | ||
51 | GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" | ||
52 | ; LocalGridServicesConnector needs this | 59 | ; LocalGridServicesConnector needs this |
53 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 60 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
54 | Realm = "regions" | 61 | Realm = "regions" |
62 | StorageProvider = "OpenSim.Data.Null.dll" | ||
63 | |||
64 | AllowHypergridMapSearch = true | ||
65 | |||
66 | [PresenceService] | ||
67 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
68 | StorageProvider = "OpenSim.Data.Null.dll" | ||
69 | |||
70 | [UserAccountService] | ||
71 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
72 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
73 | ;; These are for creating new accounts by the service | ||
74 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
75 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
76 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
77 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
78 | |||
79 | [FriendsService] | ||
80 | LocalServiceModule = "OpenSim.Services.FriendsService.dll" | ||
81 | ConnectionString = "URI=file:friends.db,version=3" | ||
82 | |||
83 | [Friends] | ||
84 | Connector = "OpenSim.Services.FriendsService.dll" | ||
85 | |||
86 | [LoginService] | ||
87 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" | ||
88 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
89 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
90 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
91 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
92 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
93 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
94 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
95 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | ||
96 | |||
97 | [GatekeeperService] | ||
98 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" | ||
99 | ;; for the service | ||
100 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
101 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
102 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
103 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
104 | AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" | ||
105 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" | ||
106 | |||
107 | [UserAgentService] | ||
108 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
109 | ;; for the service | ||
110 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
111 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
112 | |||
113 | ;; The interface that local users get when they are in other grids | ||
114 | ;; This greatly restricts the inventory operations while in other grids | ||
115 | [HGInventoryService] | ||
116 | ; For the InventoryServiceInConnector | ||
117 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService" | ||
118 | |||
119 | |||
120 | ;; This should always be the very last thing on this file | ||
121 | [Includes] | ||
122 | Include-Common = "config-include/StandaloneCommon.ini" | ||