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.template777
1 files changed, 777 insertions, 0 deletions
diff --git a/config/Robust.ini.template b/config/Robust.ini.template
new file mode 100644
index 0000000..1bbccd5
--- /dev/null
+++ b/config/Robust.ini.template
@@ -0,0 +1,777 @@
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|BaseURL}:${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|BaseURL}:${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_residential = "DefaultRegion, FallbackRegion, Persistent"
297 Region_Gabba_Ward = "DefaultRegion, FallbackRegion, Persistent"
298 Region_Mater_Hospital = "DefaultRegion, FallbackRegion, Persistent"
299 Region_Mater_Private_Hospital = "DefaultRegion, FallbackRegion, Persistent"
300
301 ;; Allow Hyperlinks to be created at the console
302 HypergridLinker = true
303
304 ;; Allow supporting viewers to export content
305 ;; Set to false to prevent export
306 ExportSupported = true
307
308 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
309 ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
310
311
312; * This is the configuration for the freeswitch server in grid mode
313[FreeswitchService]
314; LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
315
316 ;; The IP address of your FreeSWITCH server.
317 ;; This address must be reachable by viewers.
318 ; ServerAddress = 127.0.0.1
319
320 ;; The following configuration parameters are optional
321
322 ;; By default, this is the same as the ServerAddress
323 ; Realm = 127.0.0.1
324
325 ;; By default, this is the same as the ServerAddress on port 5060
326 ; SIPProxy = 127.0.0.1:5060
327
328 ;; Default is 5000ms
329 ; DefaultTimeout = 5000
330
331 ;; The dial plan context. Default is "default"
332 ; Context = default
333
334 ;; Currently unused
335 ; UserName = freeswitch
336
337 ;; Currently unused
338 ; Password = password
339
340 ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
341 ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
342 ;; stun.freeswitch.org is not guaranteed to be running so use it in
343 ;; production at your own risk
344 ; EchoServer = 127.0.0.1
345 ; EchoPort = 50505
346 ; AttemptSTUN = false
347
348
349; * This is the new style authentication service. Currently, only MySQL
350; * is implemented.
351; *
352[AuthenticationService]
353 ; for the server connector
354 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
355 ; Realm = "useraccounts"
356
357 ;; Allow the service to process HTTP getauthinfo calls.
358 ;; Default is false.
359 ; AllowGetAuthInfo = false
360
361 ;; Allow the service to process HTTP setauthinfo calls.
362 ;; Default is false.
363 ; AllowSetAuthInfo = false
364
365 ;; Allow the service to process HTTP setpassword calls.
366 ;; Default is false.
367 ; AllowSetPassword = false
368
369
370[OpenIdService]
371 ; for the server connector
372; AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
373; UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
374
375
376; * This is the new style user service.
377; * "Realm" is the table that is used for user lookup.
378; * It defaults to "useraccounts", which uses the new style.
379; * Realm = "users" will use the legacy tables as an authentication source
380; *
381[UserAccountService]
382 ; for the server connector
383 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
384 ; Realm = "useraccounts"
385
386 ; These are for creating new accounts by the service
387 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
388 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
389 GridService = "OpenSim.Services.GridService.dll:GridService"
390 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
391 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
392 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
393
394 ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
395 ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
396 ;; Default is false
397 CreateDefaultAvatarEntries = true
398
399 ;; Allow the service to process HTTP createuser calls.
400 ;; Default is false.
401 ; AllowCreateUser = false
402
403 ;; Allow the service to process HTTP setaccount calls.
404 ;; Default is false.
405 ; AllowSetAccount = false
406
407
408[GridUserService]
409 ; for the server connector
410 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
411
412
413[AgentPreferencesService]
414 ; for the server connector
415 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
416
417
418[PresenceService]
419 ; for the server connector
420 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
421 ; Set this to true to allow the use of advanced web services and multiple
422 ; bots using one account
423 AllowDuplicatePresences = false;
424
425
426[AvatarService]
427 ; for the server connector
428 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
429
430
431[FriendsService]
432 ; for the server connector
433 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
434
435[EstateService]
436 LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
437
438[LibraryService]
439 LibraryName = "OpenSim Library"
440 DefaultLibrary = "./inventory/Libraries.xml"
441
442
443[LoginService]
444 ; for the server connector
445 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
446 ; for the service
447 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
448 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
449 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
450 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
451 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
452 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
453 GridService = "OpenSim.Services.GridService.dll:GridService"
454 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
455 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
456 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
457 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
458
459 ; This inventory service will be used to initialize the user's inventory
460 HGInventoryServicePlugin = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
461 HGInventoryServiceConstructorArg = "HGInventoryService"
462
463 ;; Ask co-operative viewers to use a different currency name
464 Currency = "v "
465
466 ;; Set minimum fee to publish classified
467 ; ClassifiedFee = 0
468
469 WelcomeMessage = "${Const|MOTD}"
470 AllowRemoteSetLoginLevel = "false"
471
472 ; For V2 map
473 MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
474
475 ; Url to search service
476 ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
477
478 ; For V3 destination guide
479 ; DestinationGuide = "${Const|BaseURL}/guide"
480
481 ; For V3 avatar picker (( work in progress ))
482 ; AvatarPicker = "${Const|BaseURL}/avatars"
483
484 ; If you run this login server behind a proxy, set this to true
485 ; HasProxy = false
486
487 ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
488 ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
489 ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}"
490
491 SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
492 SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}"
493 SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}"
494 SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}"
495 SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
496 SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}"
497 SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}"
498
499 ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
500 ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
501 ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
502 ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
503 ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
504 ;; Options are
505 ;; "none" no DST
506 ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
507 ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
508 ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
509 DSTZone = "local"
510
511 ;Basic Login Service Dos Protection Tweaks
512 ;;
513 ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
514 ;; 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
515 ;; get around this basic DOS protection.
516 ;DOSAllowXForwardedForHeader = false
517 ;;
518 ;; The protector adds up requests during this rolling period of time, default 10 seconds
519 ;DOSRequestTimeFrameMS = 10000
520 ;;
521 ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
522 ;DOSMaxRequestsInTimeFrame = 5
523 ;;
524 ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
525 ;DOSForgiveClientAfterMS = 120000
526 ;;
527 ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
528
529
530[MapImageService]
531 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
532
533 ; Set this if you want to change the default
534 ; TilesStoragePath = "maptiles"
535 ;
536 ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
537 ; you may want to set this. Otherwise, don't set it, because it's already protected.
538 ; GridService = "OpenSim.Services.GridService.dll:GridService"
539 ;
540 ; Additionally, if you run this server behind a proxy, set this to true
541 ; HasProxy = false
542
543
544[GridInfoService]
545 ; These settings are used to return information on a get_grid_info call.
546 ; Client launcher scripts and third-party clients make use of this to
547 ; autoconfigure the client and to provide a nice user experience. If you
548 ; want to facilitate that, you should configure the settings here according
549 ; to your grid or standalone setup.
550 ;
551 ; See http://opensimulator.org/wiki/GridInfo
552
553 ; login uri: for grid this is the login server URI
554 login = ${Const|BaseURL}:${Const|PublicPort}/
555
556 ; long grid name: the long name of your grid
557 gridname = "${Const|GridName}"
558
559 ; short grid name: the short name of your grid
560 gridnick = "${Const|GridName}"
561
562 ; login page: optional: if it exists it will be used to tell the client to use
563 ; this as splash page
564 ;welcome = ${Const|BaseURL}/welcome
565
566 ; helper uri: optional: if it exists it will be used to tell the client to use
567 ; this for all economy related things
568 ;economy = ${Const|BaseURL}/economy
569
570 ; web page of grid: optional: page providing further information about your grid
571 ;about = ${Const|BaseURL}/about
572
573 ; account creation: optional: page providing further information about obtaining
574 ; a user account on your grid
575 ;register = ${Const|BaseURL}/register
576
577 ; help: optional: page providing further assistance for users of your grid
578 ;help = ${Const|BaseURL}/help
579
580 ; password help: optional: page providing password assistance for users of your grid
581 ;password = ${Const|BaseURL}/password
582
583 ; HG address of the gatekeeper, if you have one
584 ; this is the entry point for all the regions of the world
585 ; gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/
586
587 ; HG user domain, if you have one
588 ; this is the entry point for all user-related HG services
589 ; uas = ${Const|BaseURL}:${Const|PublicPort}/
590
591
592[GatekeeperService]
593 LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
594 ;; for the service
595 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
596 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
597 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
598 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
599 GridService = "OpenSim.Services.GridService.dll:GridService"
600 AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
601 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
602 ; how does the outside world reach me? This acts as public key too.
603 ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
604 ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}"
605
606 ; Does this grid allow incoming links to any region in it?
607 ; If false, HG TPs happen only to the Default regions specified in [GridService] section
608 AllowTeleportsToAnyRegion = true
609
610 ; If you run this gatekeeper server behind a proxy, set this to true
611 ; HasProxy = false
612
613 ;; Are foreign visitors allowed?
614 ForeignAgentsAllowed = true
615 ;;
616 ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
617 ;; Leave blank or commented for no exceptions.
618 ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
619 ;;
620 ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
621 ;; Leave blank or commented for no exceptions.
622 ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
623
624
625[UserAgentService]
626 LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
627 ;; for the service
628 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
629 GridService = "OpenSim.Services.GridService.dll:GridService"
630 GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
631 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
632 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
633 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
634
635 ; If you run this user agent server behind a proxy, set this to true
636 ; HasProxy = false
637
638 ;; If you separate the UserAgentService from the LoginService, set this to
639 ;; the IP address of the machine where your LoginService is
640 ;LoginServerIP = "127.0.0.1"
641
642 ; User level required to be contacted from other grids
643 LevelOutsideContacts = 0
644
645 ;; Restrictions on destinations of local users.
646 ;; Are local users allowed to visit other grids?
647 ;; What user level? Use variables of this forrm:
648 ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
649 ;; (the default is true)
650 ;; For example:
651 ; ForeignTripsAllowed_Level_0 = false
652 ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
653 ;;
654 ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
655 ;; Leave blank or commented for no exceptions.
656 ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
657 ;;
658 ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
659 ;; Leave blank or commented for no exceptions.
660 ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
661
662 ;; This variable controls what is exposed to profiles of local users
663 ;; as seen from outside of this grid. Leave it uncommented for exposing
664 ;; UserTitle, UserFlags and the creation date. Uncomment and change to False
665 ;; to block this info from being exposed.
666 ; ShowUserDetailsInHGProfile = True
667
668
669; * The interface that local users get when they are in other grids.
670; * This restricts the inventory operations while in other grids.
671; * Still not completely safe, especially if users perform inventory operations
672; * while in those grids. The more the user accesses his/her inventory, the more
673; * those simulators will know about the user's inventory.
674; *
675[HGInventoryService]
676 ; For the InventoryServiceInConnector
677 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGSuitcaseInventoryService"
678 ;; alternatives:
679 ;; HG1.5, more permissive, not recommended, but still supported
680 ;LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInventoryService"
681 ;; HG1.0, totally permissive, not recommended, but OK for grids with 100% trust
682 ;LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
683
684 UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
685 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
686
687 ; HGInventoryService is a public-facing inventory service that allows users to
688 ; interact with their suitcase folder when on a foreign grid. This reuses the general inventory service connector.
689 ; Hence, if the user has set up authentication in [Network] to protect their private services
690 ; make sure it is not set here.
691 AuthType = None
692
693 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
694 ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
695
696
697; * The interface that local users get when they are in other grids.
698; * This restricts the access that the rest of the world has to
699; * the assets of this world.
700; *
701[HGAssetService]
702; LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGAssetService"
703 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFSAssetService"
704 UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
705
706 ; HGAssetService is a public-facing service that allows users to
707 ; read and create assets when on another grid. This reuses the general asset service connector.
708 ; Hence, if the user has set up authentication in [Network] to protect their private services
709 ; make sure it is overriden for this public service.
710 AuthType = None
711
712 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
713 ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
714
715 ;; The asset types that this grid can export to / import from other grids.
716 ;; Comma separated.
717 ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
718 ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
719 ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
720 ;;
721 ;; Leave blank or commented if you don't want to apply any restrictions.
722 ;; A more strict, but still reasonable, policy may be to disallow the exchange
723 ;; of scripts, like so:
724 ; DisallowExport ="LSLText"
725 ; DisallowImport ="LSLBytecode"
726
727
728[HGFriendsService]
729 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGFriendsService"
730 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
731 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
732 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
733 GridService = "OpenSim.Services.GridService.dll:GridService"
734 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
735
736
737[HGInstantMessageService]
738 LocalServiceModule = "OpenSim.Services.HypergridService.dll:HGInstantMessageService"
739 GridService = "OpenSim.Services.GridService.dll:GridService"
740 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
741 UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
742 ; This should always be true in the Robust config
743 InGatekeeper = True
744
745
746[Messaging]
747 ; OfflineIM
748 OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
749
750
751[Groups]
752 ;; for the HG Groups service
753 OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
754 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
755
756 ;; What is the HomeURI of users associated with this grid?
757 ;; Can overwrite the default in [Hypergrid], but probably shouldn't
758 ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}"
759
760 ;; Sets the maximum number of groups an agent may join
761 MaxAgentGroups = 420
762
763
764[UserProfilesService]
765 LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
766 Enabled = true
767 ;; Configure this for separate profiles database
768 ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
769 ;; Realm = UserProfiles
770 UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
771 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
772
773
774[BakedTextureService]
775 LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
776 ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
777 BaseDirectory = "bakes"