aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config/Robust.ini
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-08 15:49:56 +1000
committerDavid Walter Seikel2016-11-08 15:49:56 +1000
commit96eda14b7a1caff77da000a9a957b20ab1a1bb6e (patch)
treeceb91518776a8b36af8f08c155074fb77f5a437a /config/Robust.ini
parentReduce default logging level to INFO. (diff)
downloadopensim-SC_OLD-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.zip
opensim-SC_OLD-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.tar.gz
opensim-SC_OLD-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.tar.bz2
opensim-SC_OLD-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.tar.xz
Lots of hacking up the scripts to work with the new setup, and more.
Diffstat (limited to 'config/Robust.ini')
-rw-r--r--config/Robust.ini825
1 files changed, 0 insertions, 825 deletions
diff --git a/config/Robust.ini b/config/Robust.ini
deleted file mode 100644
index 9926ed7..0000000
--- a/config/Robust.ini
+++ /dev/null
@@ -1,825 +0,0 @@
1; * Run
2; * $ Robust.exe -inifile Robust.HG.ini
3; *
4
5; * Configurations for enabling HG1.5
6; *
7; * HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
8; * OpenSim.Server.Handlers.dll:UserAgentService
9; * Additional OpenSim.Server.Handlers.dll:AssetServiceConnector and
10; * OpenSim.Server.Handlers.dll:XInventoryInConnector
11; * are started in port 8002, outside the firewall
12; *
13; **
14; *
15; * The Const section allows us to define some basic information that we
16; * will use throughout our configuration. We will provide examples for
17; * setting the base url of the Robust server and the public and private ports
18; * it uses. Changing the values of the constants will set the operating
19; * parameters thoughout the configuration. Other constants that may prove
20; * to be useful may be added to the followin section. They may be
21; * referenced anywhere in the configuration by using ${Const|Name}. One
22; * such use is providing a base path for setting locations that Robust
23; * uses to write data.
24; *
25
26[Includes]
27 ; Define your server specific constants in this file.
28; Include-Common = /opt/opensim/config/constants.ini
29
30
31[Const]
32 MOTD = "Welcome to virtual 'Gabba."
33
34 Base = "../.."
35 AssetsPath = "../../AssetFiles"
36 CachePath = "../../caches"
37 ConfigPath = "../../config"
38 IncludePath = "../../config-include"
39
40 GridName = "onefangWorld"
41
42 ; For a grid these will usually be the externally accessible IP/DNS
43 ; name and use default public port 8002 and default private port 8003
44 ; For a standalone this will usually be the externally accessible IP/DNS
45 ; name and use default public port 9000. The private port is not used
46 ; in the configuration for a standalone.
47
48 ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1"
49 HostName = "localhost"
50 BaseURL = http://127.0.0.1
51
52 ;# {PublicPort} {} {PublicPort} {8002 9000} "8002"
53 PublicPort = "8002"
54
55 ;# {PrivatePort} {} {PrivatePort} {8003} "8003"
56 PrivatePort = "8003"
57
58
59 DataProvider = "OpenSim.Data.MySQL.dll"
60 ConnectionString = "Data Source=localhost;Database=$MYSQL_DB;User ID=$MYSQL_USER;Password=$MYSQL_PASSWORD;Old Guids=true;"
61
62; * The startup section lists all the connectors to start up in this server
63; * instance. This may be only one, or it may be the entire server suite.
64; * Multiple connectors should be separated by commas.
65; *
66; * These are the IN connectors the server uses, the in connectors
67; * read this config file and load the needed service and database connectors
68; *
69; * The full syntax of a connector string is:
70; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
71; *
72[Startup]
73 ; Place to create a PID file
74 ; If no path if specified then a PID file is not created.
75 PIDFile = "/var/run/opensim/ROBUST.pid"
76
77 ; Plugin Registry Location
78 ; Set path to directory for plugin registry. Information
79 ; about the registered repositories and installed plugins
80 ; will be stored here
81 ; The Robust.exe process must have R/W access to the location
82 RegistryLocation = "${Const|CachePath}"
83
84 ; Modular configurations
85 ; Set path to directory for modular ini files...
86 ; The Robust.exe process must have R/W access to the location, and it must NOT be shared by the OpenSim.exe process, coz that confuses things.
87 ConfigDirectory = "${Const|ConfigPath}/ROBUST"
88
89 ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
90 ConsoleHistoryFileEnabled = true
91
92 ; The history file can be just a filename (relative to OpenSim's bin/ directory
93 ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
94 ConsoleHistoryFile = "RobustConsoleHistory.txt"
95
96 ; How many lines of command history should we keep? (default is 100)
97 ConsoleHistoryFileLines = 100
98
99
100[ServiceList]
101 AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
102 InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
103 ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
104 ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
105 GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
106 GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
107 AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
108; OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
109 AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
110 LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
111 PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
112 UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
113 GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
114 AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector"
115 FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
116 MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
117 MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
118 ;; Uncomment this if you want offline IM to work
119 OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
120 ;; Uncomment this if you want Groups V2 to work
121 GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
122 ;; Uncomment to provide bakes caching
123 BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
124
125 ;; Additions for Hypergrid
126
127 GatekeeperServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector"
128 UserAgentServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserAgentServerConnector"
129 HeloServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HeloServiceInConnector"
130 HGFriendsServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HGFriendsServerConnector"
131 InstantMessageServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:InstantMessageServerConnector"
132 HGInventoryServiceConnector = "HGInventoryService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
133 HGAssetServiceConnector = "HGAssetService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
134 ;; Uncomment this if you want Groups V2, HG to work
135 HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector"
136
137 ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
138 UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
139
140 ;; Uncomment if you want to have centralized estate data
141 ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
142
143; * This is common for all services, it's the network setup for the entire
144; * server instance, if none is specified above
145; *
146[Network]
147 port = ${Const|PrivatePort}
148
149 ; HTTPS for "Out of band" management applications such as the remote admin
150 ; module. May specify https_main = True to make the main http server
151 ; use https or "False" to make the main server HTTP
152 ; https_main = False
153 ;
154 ; Create https_listener = "True" will create a listener on the port
155 ; specified. Provide the path to your server certificate along with it's
156 ; password
157 ; https_listener = False
158 ;
159 ; Set our listener to this port
160 ; https_port = 0
161 ;
162 ; Path to X509 certificate
163 ; cert_path = "path/to/cert.p12"
164 ;
165 ; Password for cert
166 ; cert_pass = "password"
167
168 ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
169 ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
170 ;; but you want to protect them from unauthorized access.
171 ; AuthType = "BasicHttpAuthentication"
172 ; HttpAuthUsername = "some_username"
173 ; HttpAuthPassword = "some_password"
174 ;;
175 ;; AuthType above can be overriden in any of the service sections below by
176 ; AuthType = "None"
177 ;; This is useful in cases where you want to protect most of the services,
178 ;; but unprotect individual services. Username and Password can also be
179 ;; overriden if you want to use different credentials for the different services.
180 ;; Hypergrid services are not affected by this; they are publicly available
181 ;; by design.
182
183 ;; By default, scripts are not allowed to call private services via llHttpRequest()
184 ;; Such calls are detected by the X-SecondLife-Shared HTTP header
185 ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
186 ;; (remember scripts can also be in visiting avatar attachments).
187 ;; This can be overriden in individual private service sections if necessary
188 AllowllHTTPRequestIn = false
189
190 ; * The following are for the remote console
191 ; * They have no effect for the local or basic console types
192 ; * Leave commented to diable logins to the console
193 ;ConsoleUser = Test
194 ;ConsolePass = secret
195 ;ConsolePort = 0
196
197
198[Hypergrid]
199 ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}
200 ;; This is the address of the external robust server that
201 ;; runs the UserAgentsService, possibly this server.
202 ;; For example http://myworld.com:8002
203 ;; This is a default that can be overwritten in some sections.
204 HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
205
206 ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}
207 ;; This is the address of the external robust server
208 ;; that runs the Gatekeeper service, possibly this server.
209 ;; For example http://myworld.com:8002
210 ;; This is a default that can be overwritten in some sections.
211 GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
212
213[AccessControl]
214 ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
215 ;; Bar (|) separated list of viewers which may gain access to the regions.
216 ;; One can use a substring of the viewer name to enable only certain
217 ;; versions
218 ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
219 ;; - "Imprudence" has access
220 ;; - "Imprudence 1.3" has access
221 ;; - "Imprudence 1.3.1" has no access
222 ; AllowedClients = ""
223
224 ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {}
225 ;; Bar (|) separated list of viewers which may not gain access to the regions.
226 ;; One can use a Substring of the viewer name to disable only certain
227 ;; versions
228 ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
229 ;; - "Imprudence" has no access
230 ;; - "Imprudence 1.3" has no access
231 ;; - "Imprudence 1.3.1" has access
232 ; DeniedClients = ""
233
234[DatabaseService]
235 ; PGSQL
236 ; Uncomment these lines if you want to use PGSQL storage
237 ; Change the connection string to your db details
238 ;StorageProvider = "OpenSim.Data.PGSQL.dll"
239 ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
240
241 ; MySQL
242 ; Uncomment these lines if you want to use MySQL storage
243 ; Change the connection string to your db details
244 StorageProvider = "${Const|DataProvider}"
245 ConnectionString = "${Const|ConnectionString}"
246
247
248; * As an example, the below configuration precisely mimicks the legacy
249; * asset server. It is read by the asset IN connector (defined above)
250; * and it then loads the OUT connector (a local database module). That,
251; * in turn, reads the asset loader and database connection information
252; *
253[AssetService]
254
255 ;; Choose an asset service (Only one option should be enabled)
256 ; When changing this, change [HGAssetService] below to match.
257 ;LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
258 LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector"
259
260 ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files
261 ;; These directories must be on the same physical filesystem
262 BaseDirectory = "${Const|AssetsPath}/data"
263 SpoolDirectory = "${Const|AssetsPath}/tmp"
264
265 ;; Original service can be checked if FSAssets can not find an asset
266 FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
267
268 ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
269 ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
270 DaysBetweenAccessTimeUpdates = 1
271
272 ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
273 ;StorageProvider = ""
274 ;ConnectionString = ""
275 ;Realm = "fsassets"
276
277 ;; The following are common to both the default asset service and FSAsset service
278
279 ;; Common asset service options
280 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
281 AssetLoaderArgs = "./assets/AssetSets.xml"
282
283 ; Allow maptile assets to remotely deleted by remote calls to the asset service.
284 ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
285 ; This only applies to maptiles served via the version 1 viewer mechanisms
286 ; Default is false
287 AllowRemoteDelete = false
288
289 ; Allow all assets to be remotely deleted.
290 ; Only set this to true if you are operating a grid where you control all calls to the asset service
291 ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
292 ; If set to true, AllowRemoteDelete = true is required as well.
293 ; Default is false.
294 AllowRemoteDeleteAllTypes = false
295
296
297; * This configuration loads the inventory server modules. It duplicates
298; * the function of the legacy inventory server
299; *
300[InventoryService]
301 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
302
303 ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
304 ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
305 AllowDelete = true
306
307
308; * This is the new style grid service.
309; * "Realm" is the table that is used for user lookup.
310; * It defaults to "regions", which uses the legacy tables
311; *
312[GridService]
313 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
314
315 ; Realm = "regions"
316 ; AllowDuplicateNames = "True"
317
318 ;; Needed to display non-default map tile images for linked regions
319 AssetService = "OpenSim.Services.AssetService.dll:AssetService"
320
321 ;; Next, we can specify properties of regions, including default and fallback regions
322 ;; The syntax is: Region_<RegionName> = "<flags>"
323 ;; or: Region_<RegionID> = "<flags>"
324 ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
325 ;;
326 ;; DefaultRegion If a local login cannot be placed in the required region (e.g. home region does not exist, avatar is not allowed entry, etc.)
327 ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
328 ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
329 ;; an explicit region.
330 ;;
331 ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
332 ;; region will be used.
333 ;;
334 ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
335 ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
336 ;;
337 ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
338 ;;
339 ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
340 ;;
341 ;; Example specification:
342 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
343 ; (replace spaces with underscore)
344 Region_residential = "DefaultRegion, FallbackRegion, Persistent"
345 Region_Gabba_Ward = "DefaultRegion, FallbackRegion, Persistent"
346 Region_Mater_Hospital = "DefaultRegion, FallbackRegion, Persistent"
347 Region_Mater_Private_Hospital = "DefaultRegion, FallbackRegion, Persistent"
348
349 ;; Allow Hyperlinks to be created at the console
350 HypergridLinker = true
351
352 ;; Allow supporting viewers to export content
353 ;; Set to false to prevent export
354 ExportSupported = true
355
356 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
357 ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
358
359
360; * This is the configuration for the freeswitch server in grid mode
361[FreeswitchService]
362; LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
363
364 ;; The IP address of your FreeSWITCH server.
365 ;; This address must be reachable by viewers.
366 ; ServerAddress = 127.0.0.1
367
368 ;; The following configuration parameters are optional
369
370 ;; By default, this is the same as the ServerAddress
371 ; Realm = 127.0.0.1
372
373 ;; By default, this is the same as the ServerAddress on port 5060
374 ; SIPProxy = 127.0.0.1:5060
375
376 ;; Default is 5000ms
377 ; DefaultTimeout = 5000
378
379 ;; The dial plan context. Default is "default"
380 ; Context = default
381
382 ;; Currently unused
383 ; UserName = freeswitch
384
385 ;; Currently unused
386 ; Password = password
387
388 ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
389 ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
390 ;; stun.freeswitch.org is not guaranteed to be running so use it in
391 ;; production at your own risk
392 ; EchoServer = 127.0.0.1
393 ; EchoPort = 50505
394 ; AttemptSTUN = false
395
396
397; * This is the new style authentication service. Currently, only MySQL
398; * is implemented.
399; *
400[AuthenticationService]
401 ; for the server connector
402 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
403 ; Realm = "useraccounts"
404
405 ;; Allow the service to process HTTP getauthinfo calls.
406 ;; Default is false.
407 ; AllowGetAuthInfo = false
408
409 ;; Allow the service to process HTTP setauthinfo calls.
410 ;; Default is false.
411 ; AllowSetAuthInfo = false
412
413 ;; Allow the service to process HTTP setpassword calls.
414 ;; Default is false.
415 ; AllowSetPassword = false
416
417
418[OpenIdService]
419 ; for the server connector
420; AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
421; UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
422
423
424; * This is the new style user service.
425; * "Realm" is the table that is used for user lookup.
426; * It defaults to "useraccounts", which uses the new style.
427; * Realm = "users" will use the legacy tables as an authentication source
428; *
429[UserAccountService]
430 ; for the server connector
431 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
432 ; Realm = "useraccounts"
433
434 ; These are for creating new accounts by the service
435 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
436 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
437 GridService = "OpenSim.Services.GridService.dll:GridService"
438 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
439 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
440 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
441
442 ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
443 ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
444 ;; Default is false
445 CreateDefaultAvatarEntries = true
446
447 ;; Allow the service to process HTTP createuser calls.
448 ;; Default is false.
449 ; AllowCreateUser = false
450
451 ;; Allow the service to process HTTP setaccount calls.
452 ;; Default is false.
453 ; AllowSetAccount = false
454
455
456[GridUserService]
457 ; for the server connector
458 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
459
460
461[AgentPreferencesService]
462 ; for the server connector
463 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
464
465
466[PresenceService]
467 ; for the server connector
468 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
469 ; Set this to true to allow the use of advanced web services and multiple
470 ; bots using one account
471 AllowDuplicatePresences = false;
472
473
474[AvatarService]
475 ; for the server connector
476 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
477
478
479[FriendsService]
480 ; for the server connector
481 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
482
483[EstateService]
484 LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
485
486[LibraryService]
487 LibraryName = "OpenSim Library"
488 DefaultLibrary = "./inventory/Libraries.xml"
489
490
491[LoginService]
492 ; for the server connector
493 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
494 ; for the service
495 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
496 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
497 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
498 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
499 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
500 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
501 GridService = "OpenSim.Services.GridService.dll:GridService"
502 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
503 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
504 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
505 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
506
507 ; This inventory service will be used to initialize the user's inventory
508 HGInventoryServicePlugin = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
509 HGInventoryServiceConstructorArg = "HGInventoryService"
510
511 ;; Ask co-operative viewers to use a different currency name
512 Currency = "v "
513
514 ;; Set minimum fee to publish classified
515 ; ClassifiedFee = 0
516
517 WelcomeMessage = "${Const|MOTD}"
518 AllowRemoteSetLoginLevel = "false"
519
520 ; For V2 map
521 MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
522
523 ; Url to search service
524 ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
525
526 ; For V3 destination guide
527 ; DestinationGuide = "${Const|BaseURL}/guide"
528
529 ; For V3 avatar picker (( work in progress ))
530 ; AvatarPicker = "${Const|BaseURL}/avatars"
531
532 ; If you run this login server behind a proxy, set this to true
533 ; HasProxy = false
534
535 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
536 ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
537 ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
538
539 SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
540 SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}"
541 SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}"
542 SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}"
543 SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
544 SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}"
545 SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
546
547 ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
548 ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
549 ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
550 ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
551 ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
552 ;; Options are
553 ;; "none" no DST
554 ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
555 ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
556 ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
557 DSTZone = "local"
558
559 ;Basic Login Service Dos Protection Tweaks
560 ;;
561 ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
562 ;; If you set this to true and you don't have a transparent proxy, it may allow attackers to put random things in the X-Forwarded-For header to
563 ;; get around this basic DOS protection.
564 ;DOSAllowXForwardedForHeader = false
565 ;;
566 ;; The protector adds up requests during this rolling period of time, default 10 seconds
567 ;DOSRequestTimeFrameMS = 10000
568 ;;
569 ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
570 ;DOSMaxRequestsInTimeFrame = 5
571 ;;
572 ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
573 ;DOSForgiveClientAfterMS = 120000
574 ;;
575 ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
576
577
578[MapImageService]
579 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
580
581 ; Set this if you want to change the default
582 ; TilesStoragePath = "maptiles"
583 ;
584 ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
585 ; you may want to set this. Otherwise, don't set it, because it's already protected.
586 ; GridService = "OpenSim.Services.GridService.dll:GridService"
587 ;
588 ; Additionally, if you run this server behind a proxy, set this to true
589 ; HasProxy = false
590
591
592[GridInfoService]
593 ; These settings are used to return information on a get_grid_info call.
594 ; Client launcher scripts and third-party clients make use of this to
595 ; autoconfigure the client and to provide a nice user experience. If you
596 ; want to facilitate that, you should configure the settings here according
597 ; to your grid or standalone setup.
598 ;
599 ; See http://opensimulator.org/wiki/GridInfo
600
601 ; login uri: for grid this is the login server URI
602 login = ${Const|BaseURL}:${Const|PublicPort}/
603
604 ; long grid name: the long name of your grid
605 gridname = "${Const|GridName}"
606
607 ; short grid name: the short name of your grid
608 gridnick = "${Const|GridName}"
609
610 ; login page: optional: if it exists it will be used to tell the client to use
611 ; this as splash page
612 ;welcome = ${Const|BaseURL}/welcome
613
614 ; helper uri: optional: if it exists it will be used to tell the client to use
615 ; this for all economy related things
616 ;economy = ${Const|BaseURL}/economy
617
618 ; web page of grid: optional: page providing further information about your grid
619 ;about = ${Const|BaseURL}/about
620
621 ; account creation: optional: page providing further information about obtaining
622 ; a user account on your grid
623 ;register = ${Const|BaseURL}/register
624
625 ; help: optional: page providing further assistance for users of your grid
626 ;help = ${Const|BaseURL}/help
627
628 ; password help: optional: page providing password assistance for users of your grid
629 ;password = ${Const|BaseURL}/password
630
631 ; HG address of the gatekeeper, if you have one
632 ; this is the entry point for all the regions of the world
633 ; gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/
634
635 ; HG user domain, if you have one
636 ; this is the entry point for all user-related HG services
637 ; uas = ${Const|BaseURL}:${Const|PublicPort}/
638
639
640[GatekeeperService]
641 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
642 ;; for the service
643 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
644 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
645 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
646 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
647 GridService = "OpenSim.Services.GridService.dll:GridService"
648 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
649 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
650 ; how does the outside world reach me? This acts as public key too.
651 ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
652 ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}"
653
654 ; Does this grid allow incoming links to any region in it?
655 ; If false, HG TPs happen only to the Default regions specified in [GridService] section
656 AllowTeleportsToAnyRegion = true
657
658 ; If you run this gatekeeper server behind a proxy, set this to true
659 ; HasProxy = false
660
661 ;; Are foreign visitors allowed?
662 ForeignAgentsAllowed = true
663 ;;
664 ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
665 ;; Leave blank or commented for no exceptions.
666 ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
667 ;;
668 ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
669 ;; Leave blank or commented for no exceptions.
670 ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
671
672
673[UserAgentService]
674 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
675 ;; for the service
676 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
677 GridService = "OpenSim.Services.GridService.dll:GridService"
678 GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
679 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
680 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
681 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
682
683 ; If you run this user agent server behind a proxy, set this to true
684 ; HasProxy = false
685
686 ;; If you separate the UserAgentService from the LoginService, set this to
687 ;; the IP address of the machine where your LoginService is
688 ;LoginServerIP = "127.0.0.1"
689
690 ; User level required to be contacted from other grids
691 LevelOutsideContacts = 0
692
693 ;; Restrictions on destinations of local users.
694 ;; Are local users allowed to visit other grids?
695 ;; What user level? Use variables of this forrm:
696 ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
697 ;; (the default is true)
698 ;; For example:
699 ; ForeignTripsAllowed_Level_0 = false
700 ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
701 ;;
702 ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
703 ;; Leave blank or commented for no exceptions.
704 ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
705 ;;
706 ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
707 ;; Leave blank or commented for no exceptions.
708 ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
709
710 ;; This variable controls what is exposed to profiles of local users
711 ;; as seen from outside of this grid. Leave it uncommented for exposing
712 ;; UserTitle, UserFlags and the creation date. Uncomment and change to False
713 ;; to block this info from being exposed.
714 ; ShowUserDetailsInHGProfile = True
715
716
717; * The interface that local users get when they are in other grids.
718; * This restricts the inventory operations while in other grids.
719; * Still not completely safe, especially if users perform inventory operations
720; * while in those grids. The more the user accesses his/her inventory, the more
721; * those simulators will know about the user's inventory.
722; *
723[HGInventoryService]
724 ; For the InventoryServiceInConnector
725 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
726 ;; alternatives:
727 ;; HG1.5, more permissive, not recommended, but still supported
728 ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
729 ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust
730 ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
731
732 UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
733 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
734
735 ; HGInventoryService is a public-facing inventory service that allows users to
736 ; interact with their suitcase folder when on a foreign grid. This reuses the general inventory service connector.
737 ; Hence, if the user has set up authentication in [Network] to protect their private services
738 ; make sure it is not set here.
739 AuthType = None
740
741 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
742 ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
743
744
745; * The interface that local users get when they are in other grids.
746; * This restricts the access that the rest of the world has to
747; * the assets of this world.
748; *
749[HGAssetService]
750; LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
751 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFSAssetService"
752 UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
753
754 ; HGAssetService is a public-facing service that allows users to
755 ; read and create assets when on another grid. This reuses the general asset service connector.
756 ; Hence, if the user has set up authentication in [Network] to protect their private services
757 ; make sure it is overriden for this public service.
758 AuthType = None
759
760 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
761 ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
762
763 ;; The asset types that this grid can export to / import from other grids.
764 ;; Comma separated.
765 ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
766 ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
767 ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
768 ;;
769 ;; Leave blank or commented if you don't want to apply any restrictions.
770 ;; A more strict, but still reasonable, policy may be to disallow the exchange
771 ;; of scripts, like so:
772 ; DisallowExport ="LSLText"
773 ; DisallowImport ="LSLBytecode"
774
775
776[HGFriendsService]
777 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService"
778 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
779 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
780 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
781 GridService = "OpenSim.Services.GridService.dll:GridService"
782 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
783
784
785[HGInstantMessageService]
786 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
787 GridService = "OpenSim.Services.GridService.dll:GridService"
788 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
789 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
790 ; This should always be true in the Robust config
791 InGatekeeper = True
792
793
794[Messaging]
795 ; OfflineIM
796 OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
797
798
799[Groups]
800 ;; for the HG Groups service
801 OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
802 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
803
804 ;; What is the HomeURI of users associated with this grid?
805 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
806 ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
807
808 ;; Sets the maximum number of groups an agent may join
809 MaxAgentGroups = 420
810
811
812[UserProfilesService]
813 LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
814 Enabled = true
815 ;; Configure this for separate profiles database
816 ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
817 ;; Realm = UserProfiles
818 UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
819 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
820
821
822[BakedTextureService]
823 LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
824 ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
825 BaseDirectory = "bakes"