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