aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/OpenSim.Server.HG.ini.example157
-rw-r--r--bin/OpenSim.Server.ini.example102
-rw-r--r--bin/OpenSim.ini.example91
-rw-r--r--bin/RegionConfig.ini.example11
-rw-r--r--bin/assets/TexturesAssetSet/TexturesAssetSet.xml6
-rw-r--r--bin/assets/TexturesAssetSet/hg2.jp2bin0 -> 24574 bytes
-rw-r--r--bin/config-include/Grid.ini26
-rw-r--r--bin/config-include/GridCommon.ini.example25
-rw-r--r--bin/config-include/GridHypergrid.ini25
-rw-r--r--bin/config-include/Standalone.ini46
-rw-r--r--bin/config-include/StandaloneCommon.ini.example18
-rw-r--r--bin/config-include/StandaloneHypergrid.ini86
12 files changed, 438 insertions, 155 deletions
diff --git a/bin/OpenSim.Server.HG.ini.example b/bin/OpenSim.Server.HG.ini.example
new file mode 100644
index 0000000..fea0ea2
--- /dev/null
+++ b/bin/OpenSim.Server.HG.ini.example
@@ -0,0 +1,157 @@
1;; Configurations for enabling HG1.5
2;;
3;; Run
4;; $ OpenSim.Server.exe -inifile OpenSim.Server.HG.ini
5
6;; HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
7;; OpenSim.Server.Handlers.dll:UserAgentService
8;; OpenSim.Server.Handlers.dll:HGInventoryServiceInConnector
9;; An additional OpenSim.Server.Handlers.dll:AssetServiceConnector is started
10;; in port 8002, outside the firewall
11;;
12
13[Startup]
14ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:InventoryServiceInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8003/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:HGInventoryServiceInConnector,8002/OpenSim.Server.Handlers.dll:AssetServiceConnector"
15
16; * This is common for all services, it's the network setup for the entire
17; * server instance, if none if specified above
18; *
19[Network]
20 port = 8003
21
22; * The following are for the remote console
23; * They have no effect for the local or basic console types
24; * Leave commented to diable logins to the console
25;ConsoleUser = Test
26;ConsolePass = secret
27;ConsolePort = 0
28
29[DatabaseService]
30 StorageProvider = "OpenSim.Data.MySQL.dll"
31 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
32
33; * As an example, the below configuration precisely mimicks the legacy
34; * asset server. It is read by the asset IN connector (defined above)
35; * and it then loads the OUT connector (a local database module). That,
36; * in turn, reads the asset loader and database connection information
37; *
38[AssetService]
39 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
40 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
41 AssetLoaderArgs = "assets/AssetSets.xml"
42
43; * This configuration loads the inventory server modules. It duplicates
44; * the function of the legacy inventory server
45; *
46[InventoryService]
47 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
48 SessionAuthentication = "false"
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 Realm = "regions"
57 ; AllowDuplicateNames = "True"
58 ;; Next, we can specify properties of regions, including default and fallback regions
59 ;; The syntax is: Region_<RegionName> = "<flags>"
60 ;; or: Region_<RegionID> = "<flags>"
61 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
62 ;; For example:
63 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
64 ; (replace spaces with underscore)
65
66; * This is the configuration for the freeswitch server in grid mode
67[FreeswitchService]
68 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
69
70; * This is the new style authentication service. Currently, only MySQL
71; * is implemented. "Realm" is the table that is used for user lookup.
72; * By setting it to "users", you can use the old style users table
73; * as an authentication source.
74; *
75[AuthenticationService]
76 ; for the server connector
77 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
78
79[OpenIdService]
80 ; for the server connector
81 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
82 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
83
84; * This is the new style user service.
85; * "Realm" is the table that is used for user lookup.
86; * It defaults to "users", which uses the legacy tables
87; *
88[UserAccountService]
89 ; for the server connector
90 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
91 ;; These are for creating new accounts by the service
92 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
93 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
94 GridService = "OpenSim.Services.GridService.dll:GridService"
95 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
96
97[PresenceService]
98 ; for the server connector
99 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
100
101[AvatarService]
102 ; for the server connector
103 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
104
105[LibraryService]
106 LibraryName = "OpenSim Library"
107 DefaultLibrary = "./inventory/Libraries.xml"
108
109[LoginService]
110 ; for the server connector
111 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
112 ; for the service
113 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
114 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
115 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
116 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
117 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
118 GridService = "OpenSim.Services.GridService.dll:GridService"
119 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
120 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
121 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
122
123 WelcomeMessage = "Welcome, Avatar!"
124 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
125 ; CHANGE THIS
126 HomeURI = "http://127.0.0.1:8002"
127 GatekeeperURI = "http://127.0.0.1:8002"
128 InventoryServerURI = "http://127.0.0.1:8002"
129 AssetServerURI = "http://127.0.0.1:8002"
130
131[GatekeeperService]
132 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
133 ;; for the service
134 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
135 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
136 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
137 GridService = "OpenSim.Services.GridService.dll:GridService"
138 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
139 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
140 ; how does the outside world reach me? This acts as public key too.
141 ; CHANGE THIS
142 ExternalName = "http://127.0.0.1:8002"
143
144[UserAgentService]
145 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
146 ;; for the service
147 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
148 GridService = "OpenSim.Services.GridService.dll:GridService"
149
150;; The interface that local users get when they are in other grids.
151;; This restricts the inventory operations while in other grids.
152;; Still not completely safe, especially if users perform inventory operations
153;; while in those grids. The more the user accesses his/her inventory, the more
154;; those simulators will know about the user's inventory.
155[HGInventoryService]
156 ; For the InventoryServiceInConnector
157 LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example
index 372923b..0535765 100644
--- a/bin/OpenSim.Server.ini.example
+++ b/bin/OpenSim.Server.ini.example
@@ -1,21 +1,23 @@
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" 13
14ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:InventoryServiceInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
13 15
14; * This is common for all services, it's the network setup for the entire 16; * This is common for all services, it's the network setup for the entire
15; * server instance 17; * server instance, if none if specified above
16; * 18; *
17[Network] 19[Network]
18port = 8003 20 port = 8003
19 21
20; * The following are for the remote console 22; * The following are for the remote console
21; * They have no effect for the local or basic console types 23; * They have no effect for the local or basic console types
@@ -24,31 +26,47 @@ port = 8003
24;ConsolePass = secret 26;ConsolePass = secret
25;ConsolePort = 0 27;ConsolePort = 0
26 28
29[DatabaseService]
30 StorageProvider = "OpenSim.Data.MySQL.dll"
31 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
32
33
27; * As an example, the below configuration precisely mimicks the legacy 34; * As an example, the below configuration precisely mimicks the legacy
28; * asset server. It is read by the asset IN connector (defined above) 35; * asset server. It is read by the asset IN connector (defined above)
29; * and it then loads the OUT connector (a local database module). That, 36; * and it then loads the OUT connector (a local database module). That,
30; * in turn, reads the asset loader and database connection information 37; * in turn, reads the asset loader and database connection information
31; * 38; *
32[AssetService] 39[AssetService]
33LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 40 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
34DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 41 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
35AssetLoaderArgs = "assets/AssetSets.xml" 42 AssetLoaderArgs = "assets/AssetSets.xml"
36StorageProvider = "OpenSim.Data.MySQL.dll"
37ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
38 43
39; * This configuration loads the inventory server modules. It duplicates 44; * This configuration loads the inventory server modules. It duplicates
40; * the function of the legacy inventory server 45; * the function of the legacy inventory server
41; * 46; *
42[InventoryService] 47[InventoryService]
43LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 48 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
44UserServerURI = "http://127.0.0.1:8002" 49 SessionAuthentication = "false"
45SessionAuthentication = "false" 50
46StorageProvider = "OpenSim.Data.MySQL.dll" 51; * This is the new style grid service.
47ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 52; * "Realm" is the table that is used for user lookup.
53; * It defaults to "regions", which uses the legacy tables
54; *
55[GridService]
56 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
57 Realm = "regions"
58 ; AllowDuplicateNames = "True"
59 ;; Next, we can specify properties of regions, including default and fallback regions
60 ;; The syntax is: Region_<RegionName> = "<flags>"
61 ;; or: Region_<RegionID> = "<flags>"
62 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
63 ;; For example:
64 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
65 ; (replace spaces with underscore)
48 66
49; * This is the configuration for the freeswitch server in grid mode 67; * This is the configuration for the freeswitch server in grid mode
50[FreeswitchService] 68[FreeswitchService]
51LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 69 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
52 70
53; * This is the new style authentication service. Currently, only MySQL 71; * This is the new style authentication service. Currently, only MySQL
54; * is implemented. "Realm" is the table that is used for user lookup. 72; * is implemented. "Realm" is the table that is used for user lookup.
@@ -56,20 +74,54 @@ LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
56; * as an authentication source. 74; * as an authentication source.
57; * 75; *
58[AuthenticationService] 76[AuthenticationService]
59AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 77 ; for the server connector
60StorageProvider = "OpenSim.Data.MySQL.dll" 78 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
61ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
62; Realm = "users"
63 79
80[OpenIdService]
81 ; for the server connector
82 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
83 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
84
64; * This is the new style user service. 85; * This is the new style user service.
65; * "Realm" is the table that is used for user lookup. 86; * "Realm" is the table that is used for user lookup.
66; * It defaults to "users", which uses the legacy tables 87; * It defaults to "users", which uses the legacy tables
67; * 88; *
68[UserAccountService] 89[UserAccountService]
69AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" 90 ; for the server connector
70StorageProvider = "OpenSim.Data.MySQL.dll" 91 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
71ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" 92 ; Realm = "useraccounts"
72; Realm = "users" 93 ;; These are for creating new accounts by the service
94 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
95 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
96 GridService = "OpenSim.Services.GridService.dll:GridService"
97 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
98
99[PresenceService]
100 ; for the server connector
101 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
102
103[AvatarService]
104 ; for the server connector
105 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
106
107[LibraryService]
108 LibraryName = "OpenSim Library"
109 DefaultLibrary = "./inventory/Libraries.xml"
110
111[LoginService]
112 ; for the server connector
113 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
114 ; for the service
115 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
116 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
117 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
118 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
119 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
120 GridService = "OpenSim.Services.GridService.dll:GridService"
121 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
122 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
123
124 WelcomeMessage = "Welcome, Avatar!"
73 125
74; * This is the new style grid service. 126; * This is the new style grid service.
75; * "Realm" is the table that is used for user lookup. 127; * "Realm" is the table that is used for user lookup.
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index ebc9b24..dd487b7 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -19,13 +19,6 @@
19 ; inside your firewall, separate patterns with a ';' 19 ; inside your firewall, separate patterns with a ';'
20 ; HttpProxyExceptions = ".mydomain.com;localhost" 20 ; HttpProxyExceptions = ".mydomain.com;localhost"
21 21
22 ; Set this to true if you are connecting your regions to a grid
23 ; Set this to false if you are running in standalone mode
24 gridmode = false
25
26 ; Set this to true if you want Hypergrid functionality
27 hypergrid = false
28
29 startup_console_commands_file = "startup_commands.txt" 22 startup_console_commands_file = "startup_commands.txt"
30 shutdown_console_commands_file = "shutdown_commands.txt" 23 shutdown_console_commands_file = "shutdown_commands.txt"
31 24
@@ -118,7 +111,7 @@
118 ;InworldRestartShutsDown = false 111 ;InworldRestartShutsDown = false
119 112
120 ; ## 113 ; ##
121 ; ## STORAGE 114 ; ## PRIM STORAGE
122 ; ## 115 ; ##
123 116
124 ; *** Prim Storage - only leave one storage_plugin uncommented *** 117 ; *** Prim Storage - only leave one storage_plugin uncommented ***
@@ -134,7 +127,7 @@
134 ; --- To use MySQL storage, supply your own connection string (this is only an example): 127 ; --- To use MySQL storage, supply your own connection string (this is only an example):
135 ; note that the supplied account needs create privilegies if you want it to auto-create needed tables. 128 ; note that the supplied account needs create privilegies if you want it to auto-create needed tables.
136 ; 129 ;
137 ; -->>> There are multiple connection strings defined in several places in this file. Check it carefully! 130 ; -->>> There are multiple connection strings defined in several places. Check it carefully!
138 ; 131 ;
139 ; storage_plugin="OpenSim.Data.MySQL.dll" 132 ; storage_plugin="OpenSim.Data.MySQL.dll"
140 ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;"; 133 ; storage_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
@@ -142,15 +135,6 @@
142 ; uncomment and change this connect string. Defaults to the above if not set 135 ; uncomment and change this connect string. Defaults to the above if not set
143 ; estate_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;"; 136 ; estate_connection_string="Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;";
144 137
145 ; Select whether you want to use local or grid asset storage.
146 ;
147 ; If you're running in standalone, you definitely want local, since there is no grid (hence this is redundant, and should
148 ; really be eliminated). The database itself is defined in asset_plugin below
149 ;
150 ; If you're running a region server connecting to a grid, you probably want grid mode, since this will use the
151 ; grid asset server. If you select local in grid mode, then you will use a database as specified in asset_plugin to store assets
152 ; locally. This will mean you won't be able to take items using your assets to other people's regions.
153
154 ; Persistence of changed objects happens during regular sweeps. The following control that behaviour to 138 ; Persistence of changed objects happens during regular sweeps. The following control that behaviour to
155 ; prevent frequently changing objects from heavily loading the region data store. 139 ; prevent frequently changing objects from heavily loading the region data store.
156 ; If both of these values are set to zero then persistence of all changed objects will happen on every sweep. 140 ; If both of these values are set to zero then persistence of all changed objects will happen on every sweep.
@@ -284,63 +268,11 @@
284 ;SMTP_SERVER_LOGIN=foo 268 ;SMTP_SERVER_LOGIN=foo
285 ;SMTP_SERVER_PASSWORD=bar 269 ;SMTP_SERVER_PASSWORD=bar
286 270
287
288[Communications]
289 ;InterregionComms = "LocalComms"
290 InterregionComms = "RESTComms"
291
292
293[StandAlone]
294 ; If this is set to true then OpenSim only allows in users who already have accounts.
295 ; An account can be created using the "create user" console command.
296 ;
297 ; If this is set to false then an account is automatically created for a user who logs in
298 ; without one. PLEASE NOTE THAT IN THIS MODE NO PASSWORD CHECKS ARE PERFORMED.
299 ; Therefore, any user can log into any account. If accounts_authenticate is later switched to
300 ; true then the passwords will need to be reset (using the "reset user password" console command) since
301 ; automatically created accounts have their password set to the string "test".
302 ;
303 ; This setting applies to standalone mode only, not grid or other modes. Default is true.
304 accounts_authenticate = true
305
306 welcome_message = "Welcome to OpenSimulator"
307
308 ; Inventory database provider
309 inventory_plugin = "OpenSim.Data.SQLite.dll"
310 ; inventory_plugin = "OpenSim.Data.MySQL.dll"
311
312 ; Inventory source SQLite example
313 inventory_source = "URI=file:inventoryStore.db,version=3"
314 ; Inventory Source MySQL example
315 ;inventory_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
316
317 ; User Data Database provider
318 ;
319 ; Multiple providers can be specified by separating them with commas (whitespace is unimportant)
320 ; If multiple providers are specified then if a profile is requested, each is queried until one
321 ; provides a valid profile, or until all providers have been queried.
322 ; Unfortunately the order of querying is currently undefined (it may not be the order in which
323 ; providers are specified here). This needs to be fixed
324 ;
325 userDatabase_plugin = "OpenSim.Data.SQLite.dll"
326 ; userDatabase_plugin = "OpenSim.Data.MySQL.dll"
327
328 ; User source SQLite example
329 user_source = "URI=file:userprofiles.db,version=3"
330 ; User Source MySQL example
331 ;user_source = "Data Source=localhost;Database=opensim;User ID=opensim;Password=****;"
332
333 ; Specifies the location and filename of the default inventory library control file. The path can be relative or absolute
334 ; Default is ./inventory/Libraries.xml
335 LibrariesXMLFile="./inventory/Libraries.xml"
336
337[Network] 271[Network]
338 ConsoleUser = "Test" 272 ConsoleUser = "Test"
339 ConsolePass = "secret" 273 ConsolePass = "secret"
340 http_listener_port = 9000 274 http_listener_port = 9000
341 console_port = 0 275 console_port = 0
342 default_location_x = 1000
343 default_location_y = 1000
344 276
345 ; ssl config: Experimental! The auto https config only really works definately on windows XP now 277 ; ssl config: Experimental! The auto https config only really works definately on windows XP now
346 ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below 278 ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below
@@ -357,21 +289,6 @@
357 ; Uncomment below to enable llRemoteData/remote channels 289 ; Uncomment below to enable llRemoteData/remote channels
358 ; remoteDataPort = 20800 290 ; remoteDataPort = 20800
359 291
360 grid_server_url = "http://127.0.0.1:8003"
361 grid_send_key = "null"
362 grid_recv_key = "null"
363
364 user_server_url = "http://127.0.0.1:8002"
365 user_send_key = "null"
366 user_recv_key = "null"
367
368 asset_server_url = "http://127.0.0.1:8003"
369
370 inventory_server_url = "http://127.0.0.1:8003"
371
372 ; The MessagingServer is a companion of the UserServer. It uses
373 ; user_send_key and user_recv_key, too
374 messaging_server_url = "http://127.0.0.1:8006"
375 292
376 ; What is reported as the "X-Secondlife-Shard" 293 ; What is reported as the "X-Secondlife-Shard"
377 ; Defaults to the user server url if not set 294 ; Defaults to the user server url if not set
@@ -1062,7 +979,7 @@
1062 ; DisableUndergroundMovement = true 979 ; DisableUndergroundMovement = true
1063 980
1064 981
1065[GridInfo] 982[GridInfoService]
1066 ; These settings are used to return information on a get_grid_info call. 983 ; These settings are used to return information on a get_grid_info call.
1067 ; Client launcher scripts and third-party clients make use of this to 984 ; Client launcher scripts and third-party clients make use of this to
1068 ; autoconfigure the client and to provide a nice user experience. If you 985 ; autoconfigure the client and to provide a nice user experience. If you
@@ -1361,7 +1278,7 @@
1361 1278
1362[GridService] 1279[GridService]
1363 ;; default standalone, overridable in StandaloneCommon.ini 1280 ;; default standalone, overridable in StandaloneCommon.ini
1364 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData" 1281 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
1365 1282
1366 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 1283 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1367 ;; The following is the configuration section for the new style services 1284 ;; The following is the configuration section for the new style services
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/assets/TexturesAssetSet/TexturesAssetSet.xml b/bin/assets/TexturesAssetSet/TexturesAssetSet.xml
index 773de44..1d7f2a4 100644
--- a/bin/assets/TexturesAssetSet/TexturesAssetSet.xml
+++ b/bin/assets/TexturesAssetSet/TexturesAssetSet.xml
@@ -343,6 +343,12 @@
343 <Key Name="assetType" Value="0" /> 343 <Key Name="assetType" Value="0" />
344 <Key Name="fileName" Value="femaleface.jp2"/> 344 <Key Name="fileName" Value="femaleface.jp2"/>
345 </Section> 345 </Section>
346 <Section Name="Hyperlink Map Texture">
347 <Key Name="assetID" Value="00000000-0000-1111-9999-000000000013"/>
348 <Key Name="name" Value="Hyperlink Map Texture"/>
349 <Key Name="assetType" Value="0" />
350 <Key Name="fileName" Value="hg2.jp2"/>
351 </Section>
346 <Section Name="Moon"> 352 <Section Name="Moon">
347 <Key Name="assetID" Value="ec4b9f0b-d008-45c6-96a4-01dd947ac621"/> 353 <Key Name="assetID" Value="ec4b9f0b-d008-45c6-96a4-01dd947ac621"/>
348 <Key Name="name" Value="Moon"/> 354 <Key Name="name" Value="Moon"/>
diff --git a/bin/assets/TexturesAssetSet/hg2.jp2 b/bin/assets/TexturesAssetSet/hg2.jp2
new file mode 100644
index 0000000..9a66fd3
--- /dev/null
+++ b/bin/assets/TexturesAssetSet/hg2.jp2
Binary files differ
diff --git a/bin/config-include/Grid.ini b/bin/config-include/Grid.ini
index 5b19130..56c76c6 100644
--- a/bin/config-include/Grid.ini
+++ b/bin/config-include/Grid.ini
@@ -10,15 +10,27 @@
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"
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example
index 6da0f1e..a62868e 100644
--- a/bin/config-include/GridCommon.ini.example
+++ b/bin/config-include/GridCommon.ini.example
@@ -20,6 +20,31 @@
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"
23 48
24[Modules] 49[Modules]
25 ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists. 50 ;; 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..7391278 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,9 @@
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
diff --git a/bin/config-include/Standalone.ini b/bin/config-include/Standalone.ini
index cdfdf4b..bd90df4 100644
--- a/bin/config-include/Standalone.ini
+++ b/bin/config-include/Standalone.ini
@@ -11,9 +11,16 @@
11 AssetServices = "LocalAssetServicesConnector" 11 AssetServices = "LocalAssetServicesConnector"
12 InventoryServices = "LocalInventoryServicesConnector" 12 InventoryServices = "LocalInventoryServicesConnector"
13 NeighbourServices = "LocalNeighbourServicesConnector" 13 NeighbourServices = "LocalNeighbourServicesConnector"
14 AuthorizationServices = "LocalAuthorizationServicesConnector" 14 AuthenticationServices = "LocalAuthenticationServicesConnector"
15 GridServices = "LocalGridServicesConnector" 15 GridServices = "LocalGridServicesConnector"
16 PresenceServices = "LocalPresenceServicesConnector"
17 UserAccountServices = "LocalUserAccountServicesConnector"
18 SimulationServices = "LocalSimulationConnectorModule"
19 AvatarServices = "LocalAvatarServicesConnector"
20 EntityTransferModule = "BasicEntityTransferModule"
21 InventoryAccessModule = "BasicInventoryAccessModule"
16 LibraryModule = true 22 LibraryModule = true
23 LLLoginServiceInConnector = true
17 24
18[AssetService] 25[AssetService]
19 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 26 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
@@ -21,10 +28,47 @@
21[InventoryService] 28[InventoryService]
22 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 29 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
23 30
31[LibraryService]
32 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
33 LibraryName = "OpenSim Library"
34 DefaultLibrary = "./inventory/Libraries.xml"
35
36[AvatarService]
37 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
38 StorageProvider = "OpenSim.Data.Null.dll"
39
24[AuthorizationService] 40[AuthorizationService]
25 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" 41 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
26 42
43[AuthenticationService]
44 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
45 StorageProvider = "OpenSim.Data.Null.dll"
46
27[GridService] 47[GridService]
28 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 48 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
29 Realm = "regions" 49 Realm = "regions"
50 StorageProvider = "OpenSim.Data.Null.dll"
51
52[PresenceService]
53 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
54 StorageProvider = "OpenSim.Data.Null.dll"
55
56[UserAccountService]
57 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
58 StorageProvider = "OpenSim.Data.Null.dll"
59 ;; These are for creating new accounts
60 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
61 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
62 GridService = "OpenSim.Services.GridService.dll:GridService"
63 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
64
65[LoginService]
66 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
67 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
68 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
69 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
70 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
71 GridService = "OpenSim.Services.GridService.dll:GridService"
72 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
30 73
74 WelcomeMessage = "Welcome, Avatar!"
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..a4fa5be 100644
--- a/bin/config-include/StandaloneHypergrid.ini
+++ b/bin/config-include/StandaloneHypergrid.ini
@@ -6,25 +6,30 @@
6 6
7[Includes] 7[Includes]
8 Include-Common = "config-include/StandaloneCommon.ini" 8 Include-Common = "config-include/StandaloneCommon.ini"
9
10[Startup]
11 hypergrid = true
12 9
13[Modules] 10[Modules]
14 AssetServices = "HGAssetBroker" 11 AssetServices = "HGAssetBroker"
15 InventoryServices = "HGInventoryBroker" 12 InventoryServices = "HGInventoryBroker"
16 NeighbourServices = "RemoteNeighbourServicesConnector" 13 NeighbourServices = "LocalNeighbourServicesConnector"
17 AuthorizationServices = "LocalAuthorizationServicesConnector" 14 AuthenticationServices = "LocalAuthenticationServicesConnector"
18 GridServices = "HGGridServicesConnector" 15 GridServices = "LocalGridServicesConnector"
16 PresenceServices = "LocalPresenceServicesConnector"
17 UserAccountServices = "LocalUserAccountServicesConnector"
18 SimulationServices = "RemoteSimulationConnectorModule"
19 AvatarServices = "LocalAvatarServicesConnector"
20 EntityTransferModule = "HGEntityTransferModule"
21 InventoryAccessModule = "HGInventoryAccessModule"
19 InventoryServiceInConnector = true 22 InventoryServiceInConnector = true
20 AssetServiceInConnector = true 23 AssetServiceInConnector = true
21 HGAuthServiceInConnector = true 24 HGAuthServiceInConnector = true
22 HypergridServiceInConnector = true 25 HypergridServiceInConnector = true
23 NeighbourServiceInConnector = true 26 NeighbourServiceInConnector = true
24 LibraryModule = true 27 LibraryModule = true
28 LLLoginServiceInConnector = true
29 AuthenticationServiceInConnector = true
30 SimulationServiceInConnector = true
25 31
26[AssetService] 32[AssetService]
27 ; For the AssetServiceInConnector
28 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 33 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
29 34
30 ; For HGAssetBroker 35 ; For HGAssetBroker
@@ -32,23 +37,78 @@
32 HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector" 37 HypergridAssetService = "OpenSim.Services.Connectors.dll:HGAssetServiceConnector"
33 38
34[InventoryService] 39[InventoryService]
35 ; For the InventoryServiceInConnector
36 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" 40 LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
37 41
38 ; For HGInventoryBroker 42 ; For HGInventoryBroker
39 LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService" 43 LocalGridInventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
40 HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector" 44 HypergridInventoryService = "OpenSim.Services.Connectors.dll:HGInventoryServiceConnector"
41 45
46[AvatarService]
47 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
48 StorageProvider = "OpenSim.Data.Null.dll"
49
50[LibraryService]
51 LocalServiceModule = "OpenSim.Services.InventoryService.dll:LibraryService"
52 LibraryName = "OpenSim Library"
53 DefaultLibrary = "./inventory/Libraries.xml"
54
42[AuthorizationService] 55[AuthorizationService]
43 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService" 56 LocalServiceModule = "OpenSim.Services.AuthorizationService.dll:AuthorizationService"
44 57
45[AuthenticationService] 58[AuthenticationService]
46 ; For the HGAuthServiceInConnector 59 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
47 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:HGAuthenticationService" 60 StorageProvider = "OpenSim.Data.Null.dll"
48 61
49[GridService] 62[GridService]
50 ; for the HGGridServicesConnector to instantiate
51 GridServiceConnectorModule = "OpenSim.Region.CoreModules.dll:LocalGridServicesConnector"
52 ; LocalGridServicesConnector needs this 63 ; LocalGridServicesConnector needs this
53 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 64 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
54 Realm = "regions" 65 Realm = "regions"
66 StorageProvider = "OpenSim.Data.Null.dll"
67
68 AllowHypergridMapSearch = true
69
70[PresenceService]
71 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
72 StorageProvider = "OpenSim.Data.Null.dll"
73
74[UserAccountService]
75 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
76 StorageProvider = "OpenSim.Data.Null.dll"
77 ;; These are for creating new accounts by the service
78 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
79 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
80 GridService = "OpenSim.Services.GridService.dll:GridService"
81 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
82
83
84[LoginService]
85 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
86 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
87 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
88 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
89 InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
90 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
91 GridService = "OpenSim.Services.GridService.dll:GridService"
92 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
93
94[GatekeeperService]
95 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
96 ;; for the service
97 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
98 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
99 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
100 GridService = "OpenSim.Services.GridService.dll:GridService"
101 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
102 ; how does the outside world reach me? This acts as public key too.
103
104[UserAgentService]
105 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
106 ;; for the service
107 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
108 GridService = "OpenSim.Services.GridService.dll:GridService"
109
110;; The interface that local users get when they are in other grids
111;; This greatly restricts the inventory operations while in other grids
112[HGInventoryService]
113 ; For the InventoryServiceInConnector
114 LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"