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