aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.Server.ini.example121
-rw-r--r--bin/OpenSim.ini.example2
-rw-r--r--bin/RegionConfig.ini.example11
-rw-r--r--bin/config-include/Grid.ini25
-rw-r--r--bin/config-include/GridCommon.ini.example24
-rw-r--r--bin/config-include/GridHypergrid.ini25
-rw-r--r--bin/config-include/Standalone.ini30
-rw-r--r--bin/config-include/StandaloneCommon.ini.example5
-rw-r--r--bin/config-include/StandaloneHypergrid.ini44
9 files changed, 226 insertions, 61 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index d4e05af..3d2a5ba 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -1,21 +1,22 @@
1; * The startup section lists all the connectors to start up in this server 1; * The startup section lists all the connectors to start up in this server
2; * instance. This may be only one, or it may be the entire server suite. 2; * instance. This may be only one, or it may be the entire server suite.
3; * Multiple connectors should be seaprated by commas. 3; * Multiple connectors should be seaprated by commas.
4; * The startup section lists all the connectors to start up in this server
5; * instance. This may be only one, or it may be the entire server suite.
6; * Multiple connectors should be seaprated by commas.
4; * 7; *
5; * These are the IN connectors the server uses, the in connectors 8; * These are the IN connectors the server uses, the in connectors
6; * read this config file and load the needed OUT and database connectors 9; * read this config file and load the needed service and database connectors
7; * 10; *
8; * Add "OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" to
9; * enable the experimental authentication service
10; * 11; *
11[Startup] 12[Startup]
12ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector" 13ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector,,OpenSim.Server.Handlers.dll:GridInfoServerInConnector,OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,OpenSim.Server.Handlers.dll:OpenIdServerConnector,OpenSim.Server.Handlers.dll:AvatarServiceConnector,OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,OpenSim.Server.Handlers.dll:PresenceServiceConnector,,OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
13 14
14; * This is common for all services, it's the network setup for the entire 15; * This is common for all services, it's the network setup for the entire
15; * server instance 16; * server instance
16; * 17; *
17[Network] 18[Network]
18port = 8003 19 port = 8003
19 20
20; * The following are for the remote console 21; * The following are for the remote console
21; * They have no effect for the local or basic console types 22; * They have no effect for the local or basic console types
@@ -30,25 +31,41 @@ port = 8003
30; * in turn, reads the asset loader and database connection information 31; * in turn, reads the asset loader and database connection information
31; * 32; *
32[AssetService] 33[AssetService]
33LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 34 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
34DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 35 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
35AssetLoaderArgs = "assets/AssetSets.xml" 36 AssetLoaderArgs = "assets/AssetSets.xml"
36StorageProvider = "OpenSim.Data.MySQL.dll" 37 StorageProvider = "OpenSim.Data.MySQL.dll"
37ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 38 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
38 39
39; * This configuration loads the inventory server modules. It duplicates 40; * This configuration loads the inventory server modules. It duplicates
40; * the function of the legacy inventory server 41; * the function of the legacy inventory server
41; * 42; *
42[InventoryService] 43[InventoryService]
43LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 44 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
44UserServerURI = "http://127.0.0.1:8002" 45 UserServerURI = "http://127.0.0.1:8002"
45SessionAuthentication = "false" 46 SessionAuthentication = "false"
46StorageProvider = "OpenSim.Data.MySQL.dll" 47 StorageProvider = "OpenSim.Data.MySQL.dll"
47ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 48 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
49
50; * This is the new style grid service.
51; * "Realm" is the table that is used for user lookup.
52; * It defaults to "regions", which uses the legacy tables
53; *
54[GridService]
55 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
56 StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
57 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
58 Realm = "regions"
59 ; AllowDuplicateNames = "True"
60 ;; Next, we can specify properties of regions, including default and fallback regions
61 ;; The syntax is: Region_<RegioName> = "<flags>"
62 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
63 ;; For example:
64 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
48 65
49; * This is the configuration for the freeswitch server in grid mode 66; * This is the configuration for the freeswitch server in grid mode
50[FreeswitchService] 67[FreeswitchService]
51LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 68 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
52 69
53; * This is the new style authentication service. Currently, only MySQL 70; * This is the new style authentication service. Currently, only MySQL
54; * is implemented. "Realm" is the table that is used for user lookup. 71; * is implemented. "Realm" is the table that is used for user lookup.
@@ -56,28 +73,64 @@ LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
56; * as an authentication source. 73; * as an authentication source.
57; * 74; *
58[AuthenticationService] 75[AuthenticationService]
59AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 76 ; for the server connector
60StorageProvider = "OpenSim.Data.MySQL.dll" 77 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
61ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 78 ; for the service
62; Realm = "users" 79 StorageProvider = "OpenSim.Data.MySQL.dll"
80 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
63 81
82[OpenIdService]
83 ; for the server connector
84 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
85 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
86
64; * This is the new style user service. 87; * This is the new style user service.
65; * "Realm" is the table that is used for user lookup. 88; * "Realm" is the table that is used for user lookup.
66; * It defaults to "users", which uses the legacy tables 89; * It defaults to "users", which uses the legacy tables
67; * 90; *
68[UserAccountService] 91[UserAccountService]
69AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" 92 ; for the server connector
70StorageProvider = "OpenSim.Data.MySQL.dll" 93 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
71ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 94 ; for the service
72; Realm = "users" 95 StorageProvider = "OpenSim.Data.MySQL.dll"
96 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
97 ; Realm = "useraccounts"
98 ;; These are for creating new accounts by the service
99 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
100 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
101 GridService = "OpenSim.Services.GridService.dll:GridService"
102 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
73 103
74; * This is the new style grid service. 104[PresenceService]
75; * "Realm" is the table that is used for user lookup. 105 ; for the server connector
76; * It defaults to "regions", which uses the legacy tables 106 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
77; * 107 ; for the service
78[GridService] 108 StorageProvider = "OpenSim.Data.MySQL.dll"
79LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 109 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
80StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" 110
81ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;" 111[AvatarService]
82Realm = "regions" 112 ; for the server connector
83; AllowDuplicateNames = "True" 113 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
114 ; for the service
115 StorageProvider = "OpenSim.Data.MySQL.dll"
116 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
117
118[LibraryService]
119 LibraryName = "OpenSim Library"
120 DefaultLibrary = "./inventory/Libraries.xml"
121
122[LoginService]
123 ; for the server connector
124 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
125 ; for the service
126 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
127 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
128 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
129 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
130 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
131 GridService = "OpenSim.Services.GridService.dll:GridService"
132 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
133 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
134
135 DefaultRegion = "OpenSim Test"
136 WelcomeMessage = "Welcome, Avatar!"
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 179c536..3b560de 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -1061,7 +1061,7 @@
1061 ; DisableUndergroundMovement = true 1061 ; DisableUndergroundMovement = true
1062 1062
1063 1063
1064[GridInfo] 1064[GridInfoService]
1065 ; These settings are used to return information on a get_grid_info call. 1065 ; These settings are used to return information on a get_grid_info call.
1066 ; Client launcher scripts and third-party clients make use of this to 1066 ; Client launcher scripts and third-party clients make use of this to
1067 ; autoconfigure the client and to provide a nice user experience. If you 1067 ; autoconfigure the client and to provide a nice user experience. If you
diff --git a/bin/RegionConfig.ini.example b/bin/RegionConfig.ini.example
index 8d833df..d45fe9d 100644
--- a/bin/RegionConfig.ini.example
+++ b/bin/RegionConfig.ini.example
@@ -20,17 +20,6 @@ AllowAlternatePorts = False
20ExternalHostName = "SYSTEMIP" 20ExternalHostName = "SYSTEMIP"
21 21
22; * 22; *
23; * Master avatar stuff. Set either a UUID (from OSGrid or your server)
24; * OR a first and last name. Password is only needed for sandbox mode
25; * The default assigns no master avatar
26; *
27
28MasterAvatarUUID = "00000000-0000-0000-0000-000000000000"
29; MasterAvatarFirstName = ""
30; MasterAvatarLastName = ""
31; MasterAvatarSandboxPassword = ""
32
33; *
34; * Prim data 23; * Prim data
35; * This allows limiting the sizes of prims and the region prim count 24; * This allows limiting the sizes of prims and the region prim count
36; * 25; *
diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini
index 5b19130..1a9ac72 100644
--- a/bin/config-include/Grid.ini
+++ b/bin/config-include/Grid.ini
@@ -10,15 +10,26 @@
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 AgentTransferModule = "AgentTransferModule"
17 LandServiceInConnector = true 21 LandServiceInConnector = true
18 LLProxyLoginModule = true 22 NeighbourServiceInConnector = true
23 SimulationServiceInConnector = true
24 LibraryModule = true
25
19 26
20[GridService] 27[GridService]
21 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 28 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
22 ; for the LocalGridServicesConnector which is used by the Remote one 29 ; for the LocalGridServicesConnector which is used by the Remote one
23 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 30 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
24 \ No newline at end of file 31
32[LibraryService]
33 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
34 LibraryName = "OpenSim Library"
35 DefaultLibrary = "./inventory/Libraries.xml"
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example
index 6da0f1e..4d94ccd 100644
--- a/bin/config-include/GridCommon.ini.example
+++ b/bin/config-include/GridCommon.ini.example
@@ -21,6 +21,30 @@
21 ; 21 ;
22 GridServerURI = "http://mygridserver.com:8003" 22 GridServerURI = "http://mygridserver.com:8003"
23 23
24[AvatarService]
25 ;
26 ; change this to your grid-wide grid server
27 ;
28 AvatarServerURI = "http://mygridserver.com:8003"
29
30[PresenceService]
31 ;
32 ; change this to your grid-wide presence server
33 ;
34 PresenceServerURI = "http://mygridserver.com:8003"
35
36[UserAccountService]
37 ;
38 ; change this to your grid-wide user accounts server
39 ;
40 UserAccountServerURI = "http://mygridserver.com:8003"
41
42[AuthenticationService]
43 ;
44 ; change this to your grid-wide authentication server
45 ;
46 AuthenticationServerURI = "http://mygridserver.com:8003"
47
24[Modules] 48[Modules]
25 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. 49 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
26 ;; Copy the config .example file into your own .ini file and change configs there 50 ;; Copy the config .example file into your own .ini file and change configs there
diff --git a/bin/config-include/GridHypergrid.ini b/bin/config-include/GridHypergrid.ini
index a5fe6e9..1275a60 100644
--- a/bin/config-include/GridHypergrid.ini
+++ b/bin/config-include/GridHypergrid.ini
@@ -13,12 +13,22 @@
13[Modules] 13[Modules]
14 AssetServices = "HGAssetBroker" 14 AssetServices = "HGAssetBroker"
15 InventoryServices = "HGInventoryBroker" 15 InventoryServices = "HGInventoryBroker"
16 NeighbourServices = "RemoteNeighbourServicesConnector"
17 GridServices = "HGGridServicesConnector" 16 GridServices = "HGGridServicesConnector"
18 NeighbourServiceInConnector = true 17 AvatarServices = "RemoteAvatarServicesConnector"
18 NeighbourServices = "RemoteNeighbourServicesConnector"
19 AuthenticationServices = "RemoteAuthenticationServicesConnector"
20 PresenceServices = "RemotePresenceServicesConnector"
21 UserAccountServices = "RemoteUserAccountServicesConnector"
22 SimulationServices = "RemoteSimulationConnectorModule"
23 AgentTransferModule = "AgentTransferModule"
19 LandServiceInConnector = true 24 LandServiceInConnector = true
25 NeighbourServiceInConnector = true
20 HypergridServiceInConnector = true 26 HypergridServiceInConnector = true
21 LLProxyLoginModule = true 27 SimulationServiceInConnector = true
28 LibraryModule = true
29 InventoryServiceInConnector = false
30 AssetServiceInConnector = false
31 LLLoginServiceInConnector = false
22 32
23[AssetService] 33[AssetService]
24 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector" 34 LocalGridAssetService = "OpenSim.Services.Connectors.dll:AssetServicesConnector"
@@ -30,8 +40,13 @@
30 40
31[GridService] 41[GridService]
32 ; for the HGGridServicesConnector to instantiate 42 ; for the HGGridServicesConnector to instantiate
33 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector" 43 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:RemoteGridServicesConnector"
34 ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector, 44 ; RemoteGridServicesConnector instantiates a LocalGridServicesConnector,
35 ; which in turn uses this 45 ; which in turn uses this
36 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 46 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
37 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 47 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
48
49[LibraryService]
50 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
51 LibraryName = "OpenSim Library"
52 DefaultLibrary = "./inventory/Libraries.xml"
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
index cdfdf4b..c9d483b 100644
--- a/bin/config-include/Standalone.ini
+++ b/bin/config-include/Standalone.ini
@@ -13,7 +13,12 @@
13 NeighbourServices = "LocalNeighbourServicesConnector" 13 NeighbourServices = "LocalNeighbourServicesConnector"
14 AuthorizationServices = "LocalAuthorizationServicesConnector" 14 AuthorizationServices = "LocalAuthorizationServicesConnector"
15 GridServices = "LocalGridServicesConnector" 15 GridServices = "LocalGridServicesConnector"
16 PresenceServices = "LocalPresenceServicesConnector"
17 UserAccountServices = "LocalUserAccountServicesConnector"
18 SimulationServices = "LocalSimulationConnectorModule"
19 AgentTransferModule = "AgentTransferModule"
16 LibraryModule = true 20 LibraryModule = true
21 LLLoginServiceInConnector = true
17 22
18[AssetService] 23[AssetService]
19 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 24 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
@@ -21,6 +26,11 @@
21[InventoryService] 26[InventoryService]
22 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 27 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
23 28
29[LibraryService]
30 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
31 LibraryName = "OpenSim Library"
32 DefaultLibrary = "./inventory/Libraries.xml"
33
24[AuthorizationService] 34[AuthorizationService]
25 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" 35 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
26 36
@@ -28,3 +38,23 @@
28 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 38 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
29 Realm = "regions" 39 Realm = "regions"
30 40
41[PresenceService]
42 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
43
44[UserAccountService]
45 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
46 ;; These are for creating new accounts
47 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
48 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
49 GridService = "OpenSim.Services.GridService.dll:GridService"
50
51[LoginService]
52 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
53 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
54 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
55 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
56 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
57 GridService = "OpenSim.Services.GridService.dll:GridService"
58
59 DefaultRegion = "OpenSim Test"
60 WelcomeMessage = "Welcome, Avatar!"
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example
index 1679f93..0d54b4d 100644
--- a/bin/config-include/StandaloneCommon.ini.example
+++ b/bin/config-include/StandaloneCommon.ini.example
@@ -39,6 +39,11 @@
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
diff --git a/bin/config-include/StandaloneHypergrid.ini b/bin/config-include/StandaloneHypergrid.ini
index 909286c..20c5d10 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -14,14 +14,20 @@
14 AssetServices = "HGAssetBroker" 14 AssetServices = "HGAssetBroker"
15 InventoryServices = "HGInventoryBroker" 15 InventoryServices = "HGInventoryBroker"
16 NeighbourServices = "RemoteNeighbourServicesConnector" 16 NeighbourServices = "RemoteNeighbourServicesConnector"
17 AuthorizationServices = "LocalAuthorizationServicesConnector" 17 AuthenticationServices = "LocalAuthenticationServicesConnector"
18 GridServices = "HGGridServicesConnector" 18 GridServices = "HGGridServicesConnector"
19 PresenceServices = "LocalPresenceServicesConnector"
20 UserAccountServices = "LocalUserAccountServicesConnector"
21 SimulationServices = "RemoteSimulationConnectorModule"
22 AvatarServices = "LocalAvatarServicesConnector"
23 AgentTransferModule = "AgentTransferModule"
19 InventoryServiceInConnector = true 24 InventoryServiceInConnector = true
20 AssetServiceInConnector = true 25 AssetServiceInConnector = true
21 HGAuthServiceInConnector = true 26 HGAuthServiceInConnector = true
22 HypergridServiceInConnector = true 27 HypergridServiceInConnector = true
23 NeighbourServiceInConnector = true 28 NeighbourServiceInConnector = true
24 LibraryModule = true 29 LibraryModule = true
30 LLLoginServiceInConnector = true
25 31
26[AssetService] 32[AssetService]
27 ; For the AssetServiceInConnector 33 ; For the AssetServiceInConnector
@@ -39,12 +45,20 @@
39 LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" 45 LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
40 HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" 46 HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector"
41 47
48[AvatarService]
49 ; For the InventoryServiceInConnector
50 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
51
52[LibraryService]
53 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
54 LibraryName = "OpenSim Library"
55 DefaultLibrary = "./inventory/Libraries.xml"
56
42[AuthorizationService] 57[AuthorizationService]
43 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" 58 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
44 59
45[AuthenticationService] 60[AuthenticationService]
46 ; For the HGAuthServiceInConnector 61 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
47 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService"
48 62
49[GridService] 63[GridService]
50 ; for the HGGridServicesConnector to instantiate 64 ; for the HGGridServicesConnector to instantiate
@@ -52,3 +66,27 @@
52 ; LocalGridServicesConnector needs this 66 ; LocalGridServicesConnector needs this
53 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 67 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
54 Realm = "regions" 68 Realm = "regions"
69
70[PresenceService]
71 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
72
73[UserAccountService]
74 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
75 ;; These are for creating new accounts by the service
76 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
77 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
78 GridService = "OpenSim.Services.GridService.dll:GridService"
79 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
80
81[LoginService]
82 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
83 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
84 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
85 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
86 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
87 GridService = "OpenSim.Services.GridService.dll:GridService"
88 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
89
90 DefaultRegion = "OpenSim Test"
91 WelcomeMessage = "Welcome, Avatar!"
92