clockwerk-opensim – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 vero 1 ; This is the main configuration file for an instance of OpenSim running in standalone mode
2  
3 [DatabaseService]
4 ;
5 ; ### Choose the DB
6 ;
7  
8 ; SQLite
9 Include-Storage = "config-include/storage/SQLiteStandalone.ini";
10  
11 ; MySql
12 ; Uncomment these lines if you want to use mysql storage
13 ; Change the connection string to your db details
14 ;StorageProvider = "OpenSim.Data.MySQL.dll"
15 ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
16  
17 ; Uncomment this line if you are using MySQL and want to use a different database for estates.
18 ; The usual application for this is to allow estates to be spread out across multiple simulators by share the same database.
19 ; Most people won't need to do this so only uncomment if you know what you're doing.
20 ;EstateConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
21  
22 ; MSSQL
23 ; Uncomment these lines if you want to use MSSQL storage
24 ; Change the connection string to your db details
25 ; The value for server property is shown in your SQL Server Management Studio login dialog.
26 ; (This sample is the default of express edition)
27 ;StorageProvider = "OpenSim.Data.MSSQL.dll"
28 ;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;"
29  
30 ; PGSQL
31 ; Uncomment these lines if you want to use PGSQL storage
32 ; Change the connection string to your db details
33 ;StorageProvider = "OpenSim.Data.PGSQL.dll"
34 ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
35  
36 [Hypergrid]
37 ; Uncomment the variables in this section only if you are in
38 ; Hypergrid configuration. Otherwise, ignore.
39  
40 ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}
41 ;; If this is a standalone world, this is the address of this instance.
42 ;; If this is a grided simulator, this is the address of the external robust server that
43 ;; runs the UserAgentsService.
44 ;; For example http://myworld.com:9000 or http://myworld.com:8002
45 ;; This is a default that can be overwritten in some sections.
46 ; HomeURI = "http://127.0.0.1:9000"
47  
48 ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}
49 ;; If this is a standalone world, this is the address of this instance.
50 ;; If this is a grided simulator, this is the address of the external robust server
51 ;; that runs the Gatekeeper service.
52 ;; For example http://myworld.com:9000 or http://myworld.com:8002
53 ;; This is a default that can be overwritten in some sections.
54 ; GatekeeperURI = "http://127.0.0.1:9000"
55  
56 [Modules]
57 ;; Choose one cache module and the corresponding config file, if it exists.
58 ;; Copy the config .example file into your own .ini file and alter that
59 ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
60  
61 AssetCaching = "FlotsamAssetCache"
62 Include-FlotsamCache = "config-include/FlotsamCache.ini"
63  
64 ;AssetCaching = "CenomeMemoryAssetCache"
65 ;Include-CenomeCache = "config-include/CenomeCache.ini"
66  
67 ;AssetCaching = "GlynnTuckerAssetCache"
68  
69 ;; Authorization is not on by default, as it depends on external php
70 ;AuthorizationServices = "LocalAuthorizationServicesConnector"
71  
72 [AssetService]
73 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
74 AssetLoaderArgs = "assets/AssetSets.xml"
75  
76  
77 [GridService]
78 ;; For in-memory region storage (default)
79 StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
80 ;;--- For MySql region storage (alternative)
81 ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
82  
83 ;; Directory for map tile images of remote regions
84 ; MapTileDirectory = "./maptiles"
85  
86 ;; Next, we can specify properties of regions, including default and fallback regions
87 ;; The syntax is: Region_<RegioName> = "<flags>"
88 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut
89 ;;
90 ;; 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.)
91 ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
92 ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
93 ;; an explicit region.
94 ;;
95 ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
96 ;; region will be used.
97 ;;
98 ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
99 ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
100 ;;
101 ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
102 ;;
103 ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
104 ;;
105 ;; For example:
106 Region_Welcome_Area = "DefaultRegion, FallbackRegion"
107  
108 ;; Allow supporting viewers to export content
109 ;; Set to false to prevent export
110 ExportSupported = true
111  
112 ; === HG ONLY ===
113 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
114 ; GatekeeperURI="http://127.0.0.1:9000"
115  
116 [LibraryModule]
117 ; Set this if you want to change the name of the OpenSim Library
118 ;LibraryName = "My World's Library"
119  
120 [LoginService]
121 WelcomeMessage = "Welcome, Avatar!"
122 ;; If you have Gatekeeper set under [Hypergrid], no need to set it here, leave it commented
123 ; GatekeeperURI = "http://127.0.0.1:9000"
124  
125 SRV_HomeURI = "http://127.0.0.1:9000"
126 SRV_InventoryServerURI = "http://127.0.0.1:9000"
127 SRV_AssetServerURI = "http://127.0.0.1:9000"
128 SRV_ProfileServerURI = "http://127.0.0.1:9000"
129 SRV_FriendsServerURI = "http://127.0.0.1:9000"
130 SRV_IMServerURI = "http://127.0.0.1:9000"
131  
132 ;; For Viewer 2
133 MapTileURL = "http://127.0.0.1:9000/"
134  
135 ; Url to search service
136 ; SearchURL = "http://127.0.0.1:8002";
137  
138 ; The minimum user level required for a user to be able to login. 0 by default
139 ; If you disable a particular user's account then you can set their login level below this number.
140 ; You can also change this level from the console though these changes will not be persisted.
141 ; MinLoginLevel = 0
142  
143 ;; Ask co-operative viewers to use a different currency name
144 ;Currency = ""
145  
146 ;; Set minimum fee to publish classified
147 ; ClassifiedFee = 0
148  
149 ;; Regular expressions for controlling which client versions are accepted/denied.
150 ;; An empty string means nothing is checked.
151 ;;
152 ;; Example 1: allow only these 3 types of clients (any version of them)
153 ;; AllowedClients = "Imprudence|Hippo|Second Life"
154 ;;
155 ;; Example 2: allow all clients except these
156 ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
157 ;;
158 ;; Note that these are regular expressions, so every character counts.
159 ;; Also note that this is very weak security and should not be trusted as a reliable means
160 ;; for keeping bad clients out; modified clients can fake their identifiers.
161 ;;
162 ;;
163 ;AllowedClients = ""
164 ;DeniedClients = ""
165  
166 ; Basic Login Service Dos Protection Tweaks
167 ; ;
168 ; ; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
169 ; ; 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
170 ; ; get around this basic DOS protection.
171 ; DOSAllowXForwardedForHeader = false
172 ; ;
173 ; ; The protector adds up requests during this rolling period of time, default 10 seconds
174 ; DOSRequestTimeFrameMS = 10000
175 ; ;
176 ; ; The amount of requests in the above timeframe from the same endpoint that triggers protection
177 ; DOSMaxRequestsInTimeFrame = 5
178 ; ;
179 ; ; The amount of time that a specific endpoint is blocked. Default 2 minutes.
180 ; DOSForgiveClientAfterMS = 120000
181 ; ;
182 ; ; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
183  
184 [FreeswitchService]
185 ;; If FreeSWITCH is not being used then you don't need to set any of these parameters
186 ;;
187 ;; The IP address of your FreeSWITCH server. The common case is for this to be the same as the server running the OpenSim standalone
188 ;; This has to be set for the FreeSWITCH service to work
189 ;; This address must be reachable by viewers.
190 ;ServerAddress = 127.0.0.1
191  
192 ;; The following configuration parameters are optional
193  
194 ;; By default, this is the same as the ServerAddress
195 ; Realm = 127.0.0.1
196  
197 ;; By default, this is the same as the ServerAddress on port 5060
198 ; SIPProxy = 127.0.0.1:5060
199  
200 ;; Default is 5000ms
201 ; DefaultTimeout = 5000
202  
203 ;; The dial plan context. Default is "default"
204 ; Context = default
205  
206 ;; Currently unused
207 ; UserName = freeswitch
208  
209 ;; Currently unused
210 ; Password = password
211  
212 ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
213 ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
214 ;; stun.freeswitch.org is not guaranteed to be running so use it in
215 ;; production at your own risk
216 ; EchoServer = 127.0.0.1
217 ; EchoPort = 50505
218 ; AttemptSTUN = false
219  
220 [GridInfoService]
221 ; These settings are used to return information on a get_grid_info call.
222 ; Client launcher scripts and third-party clients make use of this to
223 ; autoconfigure the client and to provide a nice user experience. If you
224 ; want to facilitate that, you should configure the settings here according
225 ; to your grid or standalone setup.
226 ;
227 ; See http://opensimulator.org/wiki/GridInfo
228  
229 ; login uri: for grid this is the login server URI
230 login = http://127.0.0.1:9000/
231  
232 ; long grid name: the long name of your grid
233 gridname = "the lost continent of hippo"
234  
235 ; short grid name: the short name of your grid
236 gridnick = "hippogrid"
237  
238 ; login page: optional: if it exists it will be used to tell the client to use
239 ; this as splash page
240 ; currently unused
241 ;welcome = http://127.0.0.1/welcome
242  
243 ; helper uri: optional: if it exists if will be used to tell the client to use
244 ; this for all economy related things
245 ; currently unused
246 ;economy = http://127.0.0.1:9000/
247  
248 ; web page of grid: optional: page providing further information about your grid
249 ; currently unused
250 ;about = http://127.0.0.1/about/
251  
252 ; account creation: optional: page providing further information about obtaining
253 ; a user account on your grid
254 ; currently unused
255 ;register = http://127.0.0.1/register
256  
257 ; help: optional: page providing further assistance for users of your grid
258 ; currently unused
259 ;help = http://127.0.0.1/help
260  
261 ; password help: optional: page providing password assistance for users of your grid
262 ; currently unused
263 ;password = http://127.0.0.1/password
264  
265 ; HG address of the gatekeeper, if you have one
266 ; this is the entry point for all the regions of the world
267 ; gatekeeper = http://127.0.0.1:9000/
268  
269 ; HG user domain, if you have one
270 ; this is the entry point for all user-related HG services
271 ; uas = http://127.0.0.1:9000/
272  
273 [MapImageService]
274 ; Set this if you want to change the default
275 ; TilesStoragePath = "maptiles"
276  
277 [AuthorizationService]
278 ; If you have regions with access restrictions
279 ; specify them here using the convention
280 ; Region_<Region_Name> = <flags>
281 ; Valid flags are:
282 ; DisallowForeigners -- HG visitors not allowed
283 ; DisallowResidents -- only Admins and Managers allowed
284 ; Example:
285 ; Region_Test_1 = "DisallowForeigners"
286  
287 ;;
288 ;; HG configurations
289 ;;
290 [GatekeeperService]
291 ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented
292 ; ExternalName = "http://127.0.0.1:9000"
293  
294 ; Does this grid allow incoming links to any region in it?
295 ; If false, HG TPs happen only to the Default regions specified in [GridService] section
296 AllowTeleportsToAnyRegion = true
297  
298 ;; Regular expressions for controlling which client versions are accepted/denied.
299 ;; An empty string means nothing is checked.
300 ;;
301 ;; Example 1: allow only these 3 types of clients (any version of them)
302 ;; AllowedClients = "Imprudence|Hippo|Second Life"
303 ;;
304 ;; Example 2: allow all clients except these
305 ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
306 ;;
307 ;; Note that these are regular expressions, so every character counts.
308 ;; Also note that this is very weak security and should not be trusted as a reliable means
309 ;; for keeping bad clients out; modified clients can fake their identifiers.
310 ;;
311 ;;
312 ;AllowedClients = ""
313 ;DeniedClients = ""
314  
315 ;; Are foreign visitors allowed?
316 ;ForeignAgentsAllowed = true
317 ;;
318 ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
319 ;; Leave blank or commented for no exceptions.
320 ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
321 ;;
322 ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
323 ;; Leave blank or commented for no exceptions.
324 ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
325  
326 [UserAgentService]
327 ;; User level required to be contacted from other grids
328 ;LevelOutsideContacts = 0
329  
330 ;; Restrictions on destinations of local users.
331 ;; Are local users allowed to visit other grids?
332 ;; What user level? Use variables of this forrm:
333 ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
334 ;; (the default is true)
335 ;; For example:
336 ; ForeignTripsAllowed_Level_0 = false
337 ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
338 ;;
339 ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
340 ;; Leave blank or commented for no exceptions.
341 ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
342 ;;
343 ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
344 ;; Leave blank or commented for no exceptions.
345 ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
346  
347 ;; This variable controls what is exposed to profiles of local users
348 ;; as seen from outside of this grid. Leave it uncommented for exposing
349 ;; UserTitle, UserFlags and the creation date. Uncomment and change to False
350 ;; to block this info from being exposed.
351 ; ShowUserDetailsInHGProfile = True
352  
353  
354 [HGInventoryService]
355 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
356 ; HomeURI = "http://127.0.0.1:9000"
357  
358 [HGAssetService]
359 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
360 ; HomeURI = "http://127.0.0.1:9000"
361  
362 ;; The asset types that this grid can export to / import from other grids.
363 ;; Comma separated.
364 ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
365 ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
366 ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
367 ;;
368 ;; Leave blank or commented if you don't want to apply any restrictions.
369 ;; A more strict, but still reasonable, policy may be to disallow the exchange
370 ;; of scripts, like so:
371 ; DisallowExport ="LSLText"
372 ; DisallowImport ="LSLBytecode"
373  
374  
375 [HGInventoryAccessModule]
376 ;; If you have these set under [Hypergrid], no need to set it here, leave it commented
377 ; HomeURI = "http://127.0.0.1:9000"
378 ; GatekeeperURI = "http://127.0.0.1:9000"
379  
380 ;; If you want to protect your assets from being copied by foreign visitors
381 ;; uncomment the next line. You may want to do this on sims that have licensed content.
382 ;; true = allow exports, false = disallow exports. True by default.
383 ; OutboundPermission = True
384  
385 ;; Send visual reminder to local users that their inventories are unavailable while they are traveling
386 ;; and available when they return. True by default.
387 ;RestrictInventoryAccessAbroad = True
388  
389 [HGFriendsModule]
390 ; User level required to be able to send friendship invitations to foreign users
391 ;LevelHGFriends = 0;
392  
393 [Messaging]
394 ; === HG ONLY ===
395 ;; If you have this set under [Hypergrid], no need to set it here, leave it commented
396 ; GatekeeperURI = "http://127.0.0.1:9000"
397  
398  
399 [EntityTransfer]
400 ;; User level from which local users are allowed to HG teleport. Default 0 (all users)
401 ;LevelHGTeleport = 0
402  
403 ;; Are local users restricted from taking their appearance abroad?
404 ;; Default is no restrictions
405 ;RestrictAppearanceAbroad = false
406  
407 ;; If appearance is restricted, which accounts' appearances are allowed to be exported?
408 ;; Comma-separated list of account names
409 AccountForAppearance = "Test User, Astronaut Smith"
410  
411 ;; UserProfiles Service
412 ;;
413 ;; To use, set Enabled to true then configure for your site...
414 [UserProfilesService]
415 LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
416 Enabled = false
417  
418 ;; Configure this for separate databse
419 ; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
420 ; Realm = UserProfiles
421  
422 UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
423 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"