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