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