clockwerk-opensim – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 ; * Run
2 ; * $ Robust.exe -inifile Robust.ini
3 ; *
4  
5 ; * The startup section lists all the connectors to start up in this server
6 ; * instance. This may be only one, or it may be the entire server suite.
7 ; * Multiple connectors should be separated by commas.
8 ; *
9 ; * These are the IN connectors the server uses, the in connectors
10 ; * read this config file and load the needed service and database connectors
11 ; *
12 ; * The full syntax of a connector string is:
13 ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
14 ; *
15 [Startup]
16 ; Place to create a PID file
17 ; If no path if specified then a PID file is not created.
18 ; PIDFile = "/tmp/Robust.exe.pid"
19  
20 ; Plugin Registry Location
21 ; Set path to directory for plugin registry. Information
22 ; about the registered repositories and installed plugins
23 ; will be stored here
24 ; The Robust.exe process must have R/W access to the location
25 RegistryLocation = "."
26  
27 ; Modular configurations
28 ; Set path to directory for modular ini files...
29 ; The Robust.exe process must have R/W access to the location
30 ConfigDirectory = "."
31  
32 ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
33 ConsoleHistoryFileEnabled = true
34  
35 ; The history file can be just a filename (relative to OpenSim's bin/ directory
36 ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
37 ConsoleHistoryFile = "RobustConsoleHistory.txt"
38  
39 ; How many lines of command history should we keep? (default is 100)
40 ConsoleHistoryFileLines = 100
41  
42 [ServiceList]
43 AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector"
44 InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector"
45 ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
46 ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
47 GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector"
48 GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
49 AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
50 OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
51 AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
52 LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
53 PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
54 UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
55 GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
56 FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
57 MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
58 MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
59 ;; Uncomment this if you want offline IM to work
60 ;OfflineIMServiceConnector = "8003/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
61 ;; Uncomment this if you want Groups V2 to work
62 ;GroupsServiceConnector = "8003/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
63 ;; Uncomment to provide bakes caching
64 ;BakedTextureService = "8003/OpenSim.Server.Handlers.dll:XBakesConnector"
65  
66 ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
67 ; UserProfilesServiceConnector = "8002/OpenSim.Server.Handlers.dll:UserProfilesConnector"
68  
69 ; * This is common for all services, it's the network setup for the entire
70 ; * server instance, if none is specified above
71 ; *
72 [Network]
73 port = 8003
74  
75 ; HTTPS for "Out of band" management applications such as the remote admin
76 ; module. May specify https_main = True to make the main http server
77 ; use https or "False" to make the main server HTTP
78 ; https_main = False
79 ;
80 ; Create https_listener = "True" will create a listener on the port
81 ; specified. Provide the path to your server certificate along with it's
82 ; password
83 ; https_listener = False
84 ;
85 ; Set our listener to this port
86 ; https_port = 0
87 ;
88 ; Path to X509 certificate
89 ; cert_path = "path/to/cert.p12"
90 ;
91 ; Password for cert
92 ; cert_pass = "password"
93  
94 ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
95 ;; Use this if your central services in port 8003 need to be accessible on the Internet
96 ;; but you want to protect them from unauthorized access.
97 ; AuthType = "BasicHttpAuthentication"
98 ; HttpAuthUsername = "some_username"
99 ; HttpAuthPassword = "some_password"
100 ;;
101 ;; AuthType above can be overriden in any of the service sections below by
102 ; AuthType = "None"
103 ;; This is useful in cases where you want to protect most of the services,
104 ;; but unprotect individual services. Username and Password can also be
105 ;; overriden if you want to use different credentials for the different services.
106  
107  
108 ; * The following are for the remote console
109 ; * They have no effect for the local or basic console types
110 ; * Leave commented to diable logins to the console
111 ;ConsoleUser = Test
112 ;ConsolePass = secret
113 ;ConsolePort = 0
114  
115 [DatabaseService]
116 ; PGSQL
117 ; Uncomment these lines if you want to use PGSQL storage
118 ; Change the connection string to your db details
119 ;StorageProvider = "OpenSim.Data.PGSQL.dll"
120 ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
121  
122 ; MySQL
123 ; Uncomment these lines if you want to use MySQL storage
124 ; Change the connection string to your db details
125 StorageProvider = "OpenSim.Data.MySQL.dll"
126 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
127  
128 ; * As an example, the below configuration precisely mimicks the legacy
129 ; * asset server. It is read by the asset IN connector (defined above)
130 ; * and it then loads the OUT connector (a local database module). That,
131 ; * in turn, reads the asset loader and database connection information
132 ; *
133 [AssetService]
134 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
135 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
136 AssetLoaderArgs = "./assets/AssetSets.xml"
137  
138 ; Allow maptile assets to remotely deleted by remote calls to the asset service.
139 ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
140 ; This only applies to maptiles served via the version 1 viewer mechanisms
141 ; Default is false
142 AllowRemoteDelete = false
143  
144 ; Allow all assets to be remotely deleted.
145 ; Only set this to true if you are operating a grid where you control all calls to the asset service
146 ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
147 ; If set to true, AllowRemoteDelete = true is required as well.
148 ; Default is false.
149 AllowRemoteDeleteAllTypes = false
150  
151 ; * This configuration loads the inventory server modules. It duplicates
152 ; * the function of the legacy inventory server
153 ; *
154 [InventoryService]
155 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
156  
157 ; * This is the new style grid service.
158 ; * "Realm" is the table that is used for user lookup.
159 ; * It defaults to "regions", which uses the legacy tables
160 ; *
161 [GridService]
162 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
163 ; Realm = "regions"
164 ; AllowDuplicateNames = "True"
165  
166 ;; Next, we can specify properties of regions, including default and fallback regions
167 ;; The syntax is: Region_<RegionName> = "<flags>"
168 ;; or: Region_<RegionID> = "<flags>"
169 ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
170 ;;
171 ;; 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.)
172 ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
173 ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
174 ;; an explicit region.
175 ;;
176 ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
177 ;; region will be used.
178 ;;
179 ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
180 ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
181 ;;
182 ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
183 ;;
184 ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
185 ;;
186 ;; Example specification:
187 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
188 ; (replace spaces with underscore)
189  
190 ;; Allow supporting viewers to export content
191 ;; Set to false to prevent export
192 ExportSupported = true
193  
194 ; * This is the configuration for the freeswitch server in grid mode
195 [FreeswitchService]
196 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
197  
198 ;; The IP address of your FreeSWITCH server.
199 ;; This address must be reachable by viewers.
200 ; ServerAddress = 127.0.0.1
201  
202 ;; The following configuration parameters are optional
203  
204 ;; By default, this is the same as the ServerAddress
205 ; Realm = 127.0.0.1
206  
207 ;; By default, this is the same as the ServerAddress on port 5060
208 ; SIPProxy = 127.0.0.1:5060
209  
210 ;; Default is 5000ms
211 ; DefaultTimeout = 5000
212  
213 ;; The dial plan context. Default is "default"
214 ; Context = default
215  
216 ;; Currently unused
217 ; UserName = freeswitch
218  
219 ;; Currently unused
220 ; Password = password
221  
222 ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
223 ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
224 ;; stun.freeswitch.org is not guaranteed to be running so use it in
225 ;; production at your own risk
226 ; EchoServer = 127.0.0.1
227 ; EchoPort = 50505
228 ; AttemptSTUN = false
229  
230 ; * This is the new style authentication service. Currently, only MySQL
231 ; * is implemented.
232 ; *
233 [AuthenticationService]
234 ; for the server connector
235 LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
236  
237 ;; Allow the service to process HTTP getauthinfo calls.
238 ;; Default is false.
239 ; AllowGetAuthInfo = false
240  
241 ;; Allow the service to process HTTP setauthinfo calls.
242 ;; Default is false.
243 ; AllowSetAuthInfo = false
244  
245 ;; Allow the service to process HTTP setpassword calls.
246 ;; Default is false.
247 ; AllowSetPassword = false
248  
249 [OpenIdService]
250 ; for the server connector
251 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
252 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
253  
254 ; * This is the new style authentication service. Currently, only MySQL
255 ; * is implemented. "Realm" is the table that is used for user lookup.
256 ; * It defaults to "useraccounts", which uses the new style.
257 ; * Realm = "users" will use the legacy tables as an authentication source
258 ; *
259 [UserAccountService]
260 ; for the server connector
261 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
262 ; Realm = "useraccounts"
263  
264 ; These are for creating new accounts by the service
265 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
266 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
267 GridService = "OpenSim.Services.GridService.dll:GridService"
268 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
269 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
270 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
271  
272 ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
273 ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
274 ;; Default is false
275 CreateDefaultAvatarEntries = true
276  
277 ;; Allow the service to process HTTP createuser calls.
278 ;; Default is false.
279 ; AllowCreateUser = false
280  
281 ;; Allow the service to process HTTP setaccount calls.
282 ;; Default is false.
283 ; AllowSetAccount = false
284  
285  
286 [GridUserService]
287 ; for the server connector
288 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
289  
290 [PresenceService]
291 ; for the server connector
292 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
293 ; Set this to true to allow the use of advanced web services and multiple
294 ; bots using one account
295 AllowDuplicatePresences = false;
296  
297 [AvatarService]
298 ; for the server connector
299 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
300  
301 [FriendsService]
302 ; for the server connector
303 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
304  
305 [LibraryService]
306 LibraryName = "OpenSim Library"
307 DefaultLibrary = "./inventory/Libraries.xml"
308  
309 [LoginService]
310 ; for the server connector
311 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
312 ; for the service
313 UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
314 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
315 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
316 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
317 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
318 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
319 GridService = "OpenSim.Services.GridService.dll:GridService"
320 SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
321 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
322 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
323  
324 ; The minimum user level required for a user to be able to login. 0 by default
325 ; If you disable a particular user's account then you can set their login level below this number.
326 ; You can also change this level from the console though these changes will not be persisted.
327 ; MinLoginLevel = 0
328  
329 ; Ask co-operative viewers to use a different currency name
330 ;Currency = ""
331  
332 ;; Set minimum fee to publish classified
333 ; ClassifiedFee = 0
334  
335 WelcomeMessage = "Welcome, Avatar!"
336 AllowRemoteSetLoginLevel = "false"
337  
338 ; For V2 map
339 MapTileURL = "http://127.0.0.1:8002/";
340  
341 ; Url to search service
342 ; SearchURL = "http://127.0.0.1:8002/";
343  
344 ; For V3 destination guide
345 ; DestinationGuide = "http://127.0.0.1/guide"
346  
347 ; For V3 avatar picker (( work in progress ))
348 ; AvatarPicker = "http://127.0.0.1/avatars"
349  
350 ; If you run this login server behind a proxy, set this to true
351 ; HasProxy = false
352  
353 ;; Regular expressions for controlling which client versions are accepted/denied.
354 ;; An empty string means nothing is checked.
355 ;;
356 ;; Example 1: allow only these 3 types of clients (any version of them)
357 ;; AllowedClients = "Imprudence|Hippo|Second Life"
358 ;;
359 ;; Example 2: allow all clients except these
360 ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
361 ;;
362 ;; Note that these are regular expressions, so every character counts.
363 ;; Also note that this is very weak security and should not be trusted as a reliable means
364 ;; for keeping bad clients out; modified clients can fake their identifiers.
365 ;;
366 ;;
367 ;AllowedClients = ""
368 ;DeniedClients = ""
369  
370 ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
371 ;; Viewers do not listen to timezone sent by the server. They use Pacific Standard Time instead,
372 ;; but rely on the server to calculate Daylight Saving Time. Sending another DST than US Pacific
373 ;; would result in time inconsistencies between grids (during summer and around DST transition period)
374 ;; default let OpenSim calculate US Pacific DST
375 ;; "none" disable DST (equivallent to "local" with system set to GMT)
376 ;; "local" force legacy behaviour (using local system time to calculate DST)
377 ; DSTZone = "America/Los_Angeles;Pacific Standard Time"
378  
379 ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
380 ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
381 ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
382 ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
383 ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
384 ;; Options are
385 ;; "none" no DST
386 ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
387 ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
388 ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
389 DSTZone = "America/Los_Angeles;Pacific Standard Time"
390  
391 ;Basic Login Service Dos Protection Tweaks
392 ;;
393 ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
394 ;; 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
395 ;; get around this basic DOS protection.
396 ;DOSAllowXForwardedForHeader = false
397 ;;
398 ;; The protector adds up requests during this rolling period of time, default 10 seconds
399 ;DOSRequestTimeFrameMS = 10000
400 ;;
401 ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
402 ;DOSMaxRequestsInTimeFrame = 5
403 ;;
404 ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
405 ;DOSForgiveClientAfterMS = 120000
406 ;;
407 ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
408  
409  
410 [MapImageService]
411 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
412 ; Set this if you want to change the default
413 ; TilesStoragePath = "maptiles"
414 ;
415 ; If for some reason you have the AddMapTile service outside the firewall (e.g. 8002),
416 ; you may want to set this. Otherwise, don't set it, because it's already protected.
417 ; GridService = "OpenSim.Services.GridService.dll:GridService"
418 ;
419 ; Additionally, if you run this server behind a proxy, set this to true
420 ; HasProxy = false
421  
422  
423 [Messaging]
424 ; OfflineIM
425 OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
426  
427 [GridInfoService]
428 ; These settings are used to return information on a get_grid_info call.
429 ; Client launcher scripts and third-party clients make use of this to
430 ; autoconfigure the client and to provide a nice user experience. If you
431 ; want to facilitate that, you should configure the settings here according
432 ; to your grid or standalone setup.
433 ;
434 ; See http://opensimulator.org/wiki/GridInfo
435  
436 ; login uri: for grid this is the login server URI
437 login = http://127.0.0.1:8002/
438  
439 ; long grid name: the long name of your grid
440 gridname = "the lost continent of hippo"
441  
442 ; short grid name: the short name of your grid
443 gridnick = "hippogrid"
444  
445 ; login page: optional: if it exists it will be used to tell the client to use
446 ; this as splash page
447 ;welcome = http://127.0.0.1/welcome
448  
449 ; helper uri: optional: if it exists if will be used to tell the client to use
450 ; this for all economy related things
451 ;economy = http://127.0.0.1:8002/
452  
453 ; web page of grid: optional: page providing further information about your grid
454 ;about = http://127.0.0.1/about/
455  
456 ; account creation: optional: page providing further information about obtaining
457 ; a user account on your grid
458 ;register = http://127.0.0.1/register
459  
460 ; help: optional: page providing further assistance for users of your grid
461 ;help = http://127.0.0.1/help
462  
463 ; password help: optional: page providing password assistance for users of your grid
464 ;password = http://127.0.0.1/password
465  
466 [UserProfilesService]
467 LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
468 Enabled = false
469 ;; Configure this for separate profiles database
470 ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
471 ;; Realm = UserProfiles
472 UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
473 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
474  
475 [BakedTextureService]
476 LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
477 ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
478 BaseDirectory = "./bakes"
479