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 | 62 | ||||
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 18 | ||||
-rw-r--r-- | bin/config-include/StandaloneHypergrid.ini | 102 |
6 files changed, 233 insertions, 38 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..bf693a1 100644 --- a/bin/config-include/Standalone.ini +++ b/bin/config-include/Standalone.ini | |||
@@ -4,26 +4,80 @@ | |||
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" |
20 | 24 | ||
21 | [InventoryService] | 25 | [InventoryService] |
22 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | 26 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" |
27 | [LibraryService] | ||
28 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
29 | LibraryName = "OpenSim Library" | ||
30 | DefaultLibrary = "./inventory/Libraries.xml" | ||
31 | |||
32 | [AvatarService] | ||
33 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
34 | ConnectionString = "URI=file:avatars.db,version=3" | ||
23 | 35 | ||
24 | [AuthorizationService] | 36 | [AuthorizationService] |
25 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" | 37 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" |
26 | 38 | ||
39 | [AuthenticationService] | ||
40 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
41 | ConnectionString = "URI=file:auth.db,version=3" | ||
42 | |||
27 | [GridService] | 43 | [GridService] |
28 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 44 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
29 | Realm = "regions" | 45 | Realm = "regions" |
46 | StorageProvider = "OpenSim.Data.Null.dll" | ||
47 | |||
48 | [PresenceService] | ||
49 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
50 | StorageProvider = "OpenSim.Data.Null.dll" | ||
51 | |||
52 | [UserAccountService] | ||
53 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
54 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
55 | ;; These are for creating new accounts | ||
56 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
57 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
58 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
59 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
60 | |||
61 | [FriendsService] | ||
62 | LocalServiceModule = "OpenSim.Services.FriendsService.dll" | ||
63 | ConnectionString = "URI=file:friends.db,version=3" | ||
64 | |||
65 | [Friends] | ||
66 | Connector = "OpenSim.Services.FriendsService.dll" | ||
67 | |||
68 | [LoginService] | ||
69 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" | ||
70 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
71 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
72 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
73 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
74 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
75 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
76 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | ||
77 | |||
78 | WelcomeMessage = "Welcome, Avatar!" | ||
79 | |||
80 | |||
81 | ;; This should always be the very last thing on this file | ||
82 | [Includes] | ||
83 | 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..ee84c81 100644 --- a/bin/config-include/StandaloneHypergrid.ini +++ b/bin/config-include/StandaloneHypergrid.ini | |||
@@ -3,28 +3,30 @@ | |||
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 | 21 | HGAuthServiceInConnector = true |
22 | HypergridServiceInConnector = true | 22 | HypergridServiceInConnector = true |
23 | NeighbourServiceInConnector = true | 23 | NeighbourServiceInConnector = true |
24 | LibraryModule = true | 24 | LibraryModule = true |
25 | LLLoginServiceInConnector = true | ||
26 | AuthenticationServiceInConnector = true | ||
27 | SimulationServiceInConnector = true | ||
25 | 28 | ||
26 | [AssetService] | 29 | [AssetService] |
27 | ; For the AssetServiceInConnector | ||
28 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" | 30 | LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" |
29 | 31 | ||
30 | ; For HGAssetBroker | 32 | ; For HGAssetBroker |
@@ -32,23 +34,91 @@ | |||
32 | HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" | 34 | HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" |
33 | 35 | ||
34 | [InventoryService] | 36 | [InventoryService] |
35 | ; For the InventoryServiceInConnector | ||
36 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | 37 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" |
37 | 38 | ||
38 | ; For HGInventoryBroker | 39 | ; For HGInventoryBroker |
39 | LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | 40 | LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" |
40 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" | 41 | HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" |
41 | 42 | ||
43 | [AvatarService] | ||
44 | LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
45 | ConnectionString = "URI=file:avatars.db,version=3" | ||
46 | |||
47 | [LibraryService] | ||
48 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService" | ||
49 | LibraryName = "OpenSim Library" | ||
50 | DefaultLibrary = "./inventory/Libraries.xml" | ||
51 | |||
42 | [AuthorizationService] | 52 | [AuthorizationService] |
43 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" | 53 | LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" |
44 | 54 | ||
45 | [AuthenticationService] | 55 | [AuthenticationService] |
46 | ; For the HGAuthServiceInConnector | 56 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
47 | LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" | 57 | ConnectionString = "URI=file:auth.db,version=3" |
48 | 58 | ||
49 | [GridService] | 59 | [GridService] |
50 | ; for the HGGridServicesConnector to instantiate | ||
51 | GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector" | ||
52 | ; LocalGridServicesConnector needs this | 60 | ; LocalGridServicesConnector needs this |
53 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | 61 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" |
54 | Realm = "regions" | 62 | Realm = "regions" |
63 | StorageProvider = "OpenSim.Data.Null.dll" | ||
64 | |||
65 | AllowHypergridMapSearch = true | ||
66 | |||
67 | [PresenceService] | ||
68 | LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
69 | StorageProvider = "OpenSim.Data.Null.dll" | ||
70 | |||
71 | [UserAccountService] | ||
72 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
73 | ConnectionString = "URI=file:userprofiles.db,version=3" | ||
74 | ;; These are for creating new accounts by the service | ||
75 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
76 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
77 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
78 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
79 | |||
80 | [FriendsService] | ||
81 | LocalServiceModule = "OpenSim.Services.FriendsService.dll" | ||
82 | ConnectionString = "URI=file:friends.db,version=3" | ||
83 | |||
84 | [Friends] | ||
85 | Connector = "OpenSim.Services.FriendsService.dll" | ||
86 | |||
87 | [LoginService] | ||
88 | LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" | ||
89 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
90 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
91 | AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
92 | InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
93 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
94 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
95 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | ||
96 | FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" | ||
97 | |||
98 | [GatekeeperService] | ||
99 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService" | ||
100 | ;; for the service | ||
101 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
102 | UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
103 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
104 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
105 | AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector" | ||
106 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" | ||
107 | WelcomeMessage = "Welcome, Avatar!" | ||
108 | |||
109 | [UserAgentService] | ||
110 | LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService" | ||
111 | ;; for the service | ||
112 | PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" | ||
113 | GridService = "OpenSim.Services.GridService.dll:GridService" | ||
114 | |||
115 | ;; The interface that local users get when they are in other grids | ||
116 | ;; This greatly restricts the inventory operations while in other grids | ||
117 | [HGInventoryService] | ||
118 | ; For the InventoryServiceInConnector | ||
119 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService" | ||
120 | |||
121 | |||
122 | ;; This should always be the very last thing on this file | ||
123 | [Includes] | ||
124 | Include-Common = "config-include/StandaloneCommon.ini" | ||