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