OpenSim.ini.example 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928
  1. ;; This is the main configuration file for OpenSimulator. If it's named OpenSim.ini
  2. ;; then it will be loaded by OpenSimulator. If it's named OpenSim.ini.example then
  3. ;; you will need to copy it to OpenSim.ini first (if that file does not already exist)
  4. ;;
  5. ;; If you are copying, then once you have copied OpenSim.ini.example to OpenSim.ini you will
  6. ;; need to pick an architecture in the [Architecture] section at the end of this file.
  7. ;;
  8. ;; The settings in this file are in the form "<key> = <value>". For example, save_crashes = false
  9. ;; in the [Startup] section below.
  10. ;;
  11. ;; All settings are initially commented out and the default value used, as found in
  12. ;; OpenSimDefaults.ini. To change a setting, first uncomment it by deleting the initial semicolon (;)
  13. ;; and then change the value. This will override the value in OpenSimDefaults.ini
  14. ;;
  15. ;; If you want to find out what configuration OpenSimulator has finished with once all the configuration
  16. ;; files are loaded then type "config show" on the region console command line.
  17. ;;
  18. ;;
  19. ;; NOTES FOR DEVELOPERS REGARDING THE FORMAT OF THIS FILE
  20. ;;
  21. ;; All leading white space is ignored, but preserved.
  22. ;;
  23. ;; Double semicolons denote a text comment
  24. ;;
  25. ;; ;# denotes a configuration directive description
  26. ;; formatted as:
  27. ;; {option} {depends on} {question to ask} {choices} default value
  28. ;; Any text comments following the declaration, up to the next blank line.
  29. ;; will be copied to the generated file (NOTE: generation is not yet implemented)
  30. ;; A * in the choices list will allow an empty entry.
  31. ;; An empty question will set the default if the dependencies are
  32. ;; satisfied.
  33. ;;
  34. ;; ; denotes a commented out option.
  35. ;; Any options added to OpenSim.ini.example should be initially commented out.
  36. [Startup]
  37. ;# {ConsolePrompt} {} {ConsolePrompt} {} "Region (\R) "
  38. ;; Console prompt
  39. ;; Certain special characters can be used to customize the prompt
  40. ;; Currently, these are
  41. ;; \R - substitute region name
  42. ;; \\ - substitute \
  43. ; ConsolePrompt = "Region (\R) "
  44. ;# {save_crashes} {} {Save crashes to disk?} {true false} false
  45. ;; Set this to true if you want to log crashes to disk
  46. ;; this can be useful when submitting bug reports.
  47. ;; However, this will only log crashes within OpenSimulator that cause the entire program to exit
  48. ;; It will not log crashes caused by virtual machine failures, which includes mono and ODE failures.
  49. ;; You will need to capture these native stack traces by recording the session log itself.
  50. ; save_crashes = false
  51. ;# {crash_dir} {save_crashes:true} {Directory to save crashes to?} {} crashes
  52. ;; Directory to save crashes to if above is enabled
  53. ;; (default is /opensimdir/crashes/*.txt or C:\opensim\crashes\*.txt)
  54. ; crash_dir = "crashes"
  55. ;# {PIDFile} {} {Path to PID file?} {}
  56. ;; Place to create a PID file
  57. ; PIDFile = "/tmp/my.pid"
  58. ;# {region_info_source} {} {Where to load region from?} {filesystem web} filesystem
  59. ;; Determine where OpenSimulator looks for the files which tell it
  60. ;; which regions to server
  61. ;; Default is "filesystem"
  62. ; region_info_source = "filesystem"
  63. ; region_info_source = "web"
  64. ;# {regionload_regionsdir} {region_info_source} {Location of file?} {} Regions
  65. ;; Determines where the region XML files are stored if you are loading
  66. ;; these from the filesystem.
  67. ;; Defaults to bin/Regions in your OpenSimulator installation directory
  68. ; regionload_regionsdir="C:\somewhere\xmlfiles\"
  69. ;# {regionload_webserver_url} {region_info_source} {URL to load region from?} {}
  70. ;; Determines the page from which regions xml is retrieved if you are
  71. ;; loading these from the web.
  72. ;; The XML here has the same format as it does on the filesystem
  73. ;; (including the <Root> tag), except that everything is also enclosed
  74. ;; in a <Regions> tag.
  75. ; regionload_webserver_url = "http://example.com/regions.xml";
  76. ;# {allow_regionless} {} {Allow simulator to start up with no regions configured.} {true false} false
  77. ;; Allow the simulator to start up if there are no region configuration available
  78. ;; from the selected region_info_source.
  79. ; allow_regionless = false
  80. ;# {MaxPrimUndos} {} {Maximum number of undos avialable for position, rotation and scale changes of each prim} {} 20
  81. ;; Increasing the number of undos available number will increase memory usage.
  82. MaxPrimUndos = 20
  83. ;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256
  84. ;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonphysicalPrimMax!).
  85. ; NonphysicalPrimMax = 256
  86. ;# {PhysicalPrimMax} {} {Maximum size of physical prims?} {} 10
  87. ;; Maximum size where a prim can be physical. Affects resizing of existing prims. This can be overriden in the region config file.
  88. ; PhysicalPrimMax = 10
  89. ;# {ClampPrimSize} {} {Clamp viewer rezzed prims to max sizes?} {true false} false
  90. ;; If a viewer attempts to rez a prim larger than the non-physical or physical prim max, clamp the dimensions to the appropriate maximum
  91. ;; This can be overriden in the region config file.
  92. ; ClampPrimSize = false
  93. ;# {AllowScriptCrossing} {} {Allow scripts to cross into this region} {true false} true
  94. ;; Allow scripts to keep running when they cross region boundaries, rather than being restarted. State is reloaded on the destination region.
  95. ;; This only applies when crossing to a region running in a different simulator.
  96. ;; For crossings where the regions are on the same simulator the script is always kept running.
  97. ; AllowScriptCrossing = true
  98. ;# {TrustBinaries} {AllowScriptCrossing:true} {Accept compiled binary script code? (DANGEROUS!)} {true false} false
  99. ;; Allow compiled script binary code to cross region boundaries.
  100. ;; If you set this to "true", any region that can teleport to you can
  101. ;; inject ARBITRARY BINARY CODE into your system. Use at your own risk.
  102. ;; YOU HAVE BEEN WARNED!!!
  103. ; TrustBinaries = false
  104. ;# {CombineContiguousRegions} {} {Create megaregions where possible? (Do not use with existing content!)} {true false} false
  105. ;; Combine all contiguous regions into one large megaregion
  106. ;; Order your regions from South to North, West to East in your regions.ini
  107. ;; and then set this to true
  108. ;; Warning! Don't use this with regions that have existing content!,
  109. ;; This will likely break them
  110. ; CombineContiguousRegions = false
  111. ;# {InworldRestartShutsDown} {} {Shutdown instance on region restart?} {true false} false
  112. ;; If you have only one region in an instance, or to avoid the many bugs
  113. ;; that you can trigger in modules by restarting a region, set this to
  114. ;; true to make the entire instance exit instead of restarting the region.
  115. ;; This is meant to be used on systems where some external system like
  116. ;; Monit will restart any instance that exits, thereby making the shutdown
  117. ;; into a restart.
  118. ; InworldRestartShutsDown = false
  119. ;; Persistence of changed objects happens during regular sweeps. The
  120. ;; following control that behaviour to prevent frequently changing objects
  121. ;; from heavily loading the region data store.
  122. ;; If both of these values are set to zero then persistence of all changed
  123. ;; objects will happen on every sweep.
  124. ;# {MinimumTimeBeforePersistenceConsidered} {} {Time before un-changed object may be persisted} {} 60
  125. ;; Objects will be considered for persistance in the next sweep when they
  126. ;; have not changed for this number of seconds.
  127. ; MinimumTimeBeforePersistenceConsidered = 60
  128. ;# {MaximumTimeBeforePersistenceConsidered} {} {Time before changed objects may be persisted?} {} 600
  129. ;; Objects will always be considered for persistance in the next sweep
  130. ;; if the first change occurred this number of seconds ago.
  131. ; MaximumTimeBeforePersistenceConsidered = 600
  132. ;# {see_into_this_sim_from_neighbor} {} {Should avatars in neighbor sims see objects in this sim?} {true false} true
  133. ;; Should avatars in neighbor sims see objects in this sim?
  134. ; see_into_this_sim_from_neighbor = true
  135. ;# {physical_prim} {} {Allow prims to be physical?} {true false} true
  136. ;; if you would like to allow prims to be physical and move by physics
  137. ;; with the physical checkbox in the client set this to true.
  138. ; physical_prim = true
  139. ;; Select a mesher here.
  140. ;;
  141. ;; Meshmerizer properly handles complex prims by using triangle meshes.
  142. ;; Note that only the ODE physics engine currently deals with meshed
  143. ;; prims in a satisfactory way.
  144. ;# {meshing} {} {Select mesher} {Meshmerizer ZeroMesher} Meshmerizer
  145. ;; ZeroMesher is faster but leaves the physics engine to model the mesh
  146. ;; using the basic shapes that it supports.
  147. ;; Usually this is only a box.
  148. ;; Default is Meshmerizer
  149. ; meshing = Meshmerizer
  150. ; meshing = ZeroMesher
  151. ;; Choose one of the physics engines below
  152. ;# {physics} {} {Select physics engine} {OpenDynamicsEngine BulletSim basicphysics POS} OpenDynamicsEngine
  153. ;; OpenDynamicsEngine is by some distance the most developed physics engine
  154. ;; BulletSim is incomplete and experimental but in active development
  155. ;; basicphysics effectively does not model physics at all, making all objects phantom
  156. ;; Default is OpenDynamicsEngine
  157. ; physics = OpenDynamicsEngine
  158. ; physics = BulletSim
  159. ; physics = basicphysics
  160. ; physics = POS
  161. ;# {permissionmodules} {} {Permission modules to use (may specify multiple modules, separated by comma} {} DefaultPermissionsModule
  162. ;; Permission modules to use, separated by comma.
  163. ;; Possible modules are DefaultPermissionsModule, PrimLimitsModule
  164. ; permissionmodules = DefaultPermissionsModule
  165. ;# {serverside_object_permissions} {permissionmodules:DefaultPermissionsModule} {Activate permission handling by the sim?} {true false} true
  166. ;; These are the parameters for the default permissions module
  167. ;;
  168. ;; If set to false, then, in theory, the server never carries out
  169. ;; permission checks (allowing anybody to copy
  170. ;; any item, etc. This may not yet be implemented uniformally.
  171. ;; If set to true, then all permissions checks are carried out
  172. ; serverside_object_permissions = true
  173. ;# {allow_grid_gods} {} {Allow grid gods?} {true false} false
  174. ;; This allows users with a UserLevel of 200 or more to assume god
  175. ;; powers in the regions in this simulator.
  176. ; allow_grid_gods = false
  177. ;; This allows some control over permissions
  178. ;; please note that this still doesn't duplicate SL, and is not intended to
  179. ;# {region_owner_is_god} {} {Allow region owner gods} {true false} true
  180. ;; Allow region owners to assume god powers in their regions
  181. ; region_owner_is_god = true
  182. ;# {region_manager_is_god} {} {Allow region manager gods} {true false} false
  183. ;; Allow region managers to assume god powers in regions they manage
  184. ; region_manager_is_god = false
  185. ;# {parcel_owner_is_god} {} {Allow parcel owner gods} {true false} true
  186. ;; Allow parcel owners to assume god powers in their parcels
  187. ; parcel_owner_is_god = true
  188. ;# {simple_build_permissions} {} {Allow building in parcel by access list (no groups)} {true false} false
  189. ;; More control over permissions
  190. ;; This is definitely not SL!
  191. ;; Provides a simple control for land owners to give build rights to specific avatars
  192. ;; in publicly accessible parcels that disallow object creation in general.
  193. ;; Owners specific avatars by adding them to the Access List of the parcel
  194. ;; without having to use the Groups feature
  195. ; simple_build_permissions = false
  196. ;# {DefaultScriptEngine} {} {Default script engine} {XEngine} XEngine
  197. ;; Default script engine to use. Currently, we only have XEngine
  198. ; DefaultScriptEngine = "XEngine"
  199. ;# {GenerateMaptiles} {} {Generate map tiles?} {true false} true
  200. ;; Map tile options. You can choose to generate no map tiles at all,
  201. ;; generate normal maptiles, or nominate an uploaded texture to
  202. ;; be the map tile
  203. ; GenerateMaptiles = true
  204. ;# {MaptileRefresh} {GenerateMaptiles} {Maptile refresh period?} {} 0
  205. ;; If desired, a running region can update the map tiles periodically
  206. ;; to reflect building activity. This names no sense of you don't have
  207. ;; prims on maptiles. Value is in seconds.
  208. ; MaptileRefresh = 0
  209. ;# {MaptileStaticUUID} {} {Asset ID for static map texture} {} 00000000-0000-0000-0000-000000000000
  210. ;; If not generating maptiles, use this static texture asset ID
  211. ; MaptileStaticUUID = "00000000-0000-0000-0000-000000000000"
  212. ;# {TextureOnMapTile} {} {Use terrain textures for map tiles?} {true false} true
  213. ;; Use terrain texture for maptiles if true, use shaded green if false
  214. ; TextureOnMapTile = true
  215. ;# {DrawPrimOnMapTile} {} {Draw prim shapes on map tiles?} {true false} false
  216. ;; Draw objects on maptile. This step might take a long time if you've
  217. ;; got a large number of objects, so you can turn it off here if you'd like.
  218. ; DrawPrimOnMapTile = true
  219. ;# {HttpProxy} {} {Proxy URL for llHTTPRequest and dynamic texture loading} {} http://proxy.com:8080
  220. ;; Http proxy setting for llHTTPRequest and dynamic texture loading, if required
  221. ; HttpProxy = "http://proxy.com:8080"
  222. ;# {HttpProxyExceptions} {HttpProxy} {Set of regular expressions defining URL that should not be proxied} {}
  223. ;; If you're using HttpProxy, then you can set HttpProxyExceptions to a list of regular expressions for URLs that you don't want to go through the proxy
  224. ;; For example, servers inside your firewall.
  225. ;; Separate patterns with a ';'
  226. ; HttpProxyExceptions = ".mydomain.com;localhost"
  227. ;# {emailmodule} {} {Provide llEmail and llGetNextEmail functionality? (requires SMTP server)} {true false} false
  228. ;; The email module requires some configuration. It needs an SMTP
  229. ;; server to send mail through.
  230. ; emailmodule = DefaultEmailModule
  231. ;# {SpawnPointRouting} {} {Set routing method for Telehub Spawnpoints} {closest random sequence} closest
  232. ;; SpawnPointRouting adjusts the landing for incoming avatars.
  233. ;; "closest" will place the avatar at the SpawnPoint located in the closest
  234. ;; available spot to the destination (typically map click/landmark).
  235. ;; "random" will place the avatar on a randomly selected spawnpoint;
  236. ;; "sequence" will place the avatar on the next sequential SpawnPoint
  237. ; SpawnPointRouting = closest
  238. ;# {TelehubAllowLandmark} {} {Allow users with landmarks to override telehub routing} {true false} false
  239. ;; TelehubAllowLandmark allows users with landmarks to override telehub routing and land at the landmark coordinates when set to true
  240. ;; default is false
  241. ; TelehubAllowLandmark = false
  242. ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
  243. ;; Bar (|) separated list of viewers which may gain access to the regions.
  244. ;; One can use a substring of the viewer name to enable only certain versions
  245. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  246. ;; - "Imprudence" has access
  247. ;; - "Imprudence 1.3" has access
  248. ;; - "Imprudence 1.3.1" has no access
  249. ; AllowedViewerList =
  250. ;# {BannedClients} {} {Bar (|) separated list of banned clients} {}
  251. ;# Bar (|) separated list of viewers which may not gain access to the regions.
  252. ;; One can use a Substring of the viewer name to disable only certain versions
  253. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  254. ;; - "Imprudence" has no access
  255. ;; - "Imprudence 1.3" has no access
  256. ;; - "Imprudence 1.3.1" has access
  257. ; BannedViewerList =
  258. [Estates]
  259. ; If these values are commented out then the user will be asked for estate details when required (this is the normal case).
  260. ; If these values are uncommented then they will be used to create a default estate as necessary.
  261. ; New regions will be automatically assigned to that default estate.
  262. ;# {DefaultEstateName} {} {Default name for estate?} {} My Estate
  263. ;; Name for the default estate
  264. ; DefaultEstateName = My Estate
  265. ;# {DefaultEstateOwnerName} {} {Default estate owner name?} {} FirstName LastName
  266. ;; Name for default estate owner
  267. ; DefaultEstateOwnerName = FirstName LastName
  268. ; ** Standalone Estate Settings **
  269. ; The following parameters will only be used on a standalone system to
  270. ; create an estate owner that does not already exist
  271. ;# {DefaultEstateOwnerUUID} {} {Default estate owner UUID?} {} 00000000-0000-0000-0000-000000000000
  272. ;; If DefaultEstateOwnerUUID is left at UUID.Zero (as below) then a random
  273. ;; UUID will be assigned. This is normally what you want
  274. ; DefaultEstateOwnerUUID = 00000000-0000-0000-0000-000000000000
  275. ;# {DefaultEstateOwnerEMail} {} {Default estate owner email?} {}
  276. ;; Email address for the default estate owner
  277. ; DefaultEstateOwnerEMail = [email protected]
  278. ;# {DefaultEstateOwnerPassword} {} {Default estate owner password} {}
  279. ;; Password for the default estate owner
  280. ; DefaultEstateOwnerPassword = password
  281. [SMTP]
  282. ;; The SMTP server enabled the email module to send email to external
  283. ;; destinations.
  284. ;# {enabled} {[Startup]emailmodule:DefaultEmailModule} {Enable SMTP service?} {true false} false
  285. ;; Enable sending email via SMTP
  286. ; enabled = false
  287. ;# {internal_object_host} {[Startup]emailmodule:DefaultEmailModule enabled:true} {Host name to treat as internal (object to object) email?} {} lsl.opensim.local
  288. ; internal_object_host = lsl.opensim.local
  289. ;# {host_domain_header_from} {[Startup]emailmodule:DefaultEmailModule enabled:true} {From address to use in the sent email header?} {} 127.0.0.1
  290. ; host_domain_header_from = "127.0.0.1"
  291. ;# {email_pause_time} {[Startup]emailmodule:DefaultEmailModule enabled:true} {Period in seconds to delay after an email is sent.} {} 20
  292. ; email_pause_time = 20
  293. ;# {email_max_size} {[Startup]emailmodule:DefaultEmailModule enabled:true} {Maximum total size of email in bytes.} {} 4096
  294. ; email_max_size = 4096
  295. ;# {SMTP_SERVER_HOSTNAME} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server name?} {} 127.0.0.1
  296. ; SMTP_SERVER_HOSTNAME = "127.0.0.1"
  297. ;# {SMTP_SERVER_PORT} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server name?} {SMTP server port?} {} 25
  298. ; SMTP_SERVER_PORT = 25
  299. ;# {SMTP_SERVER_LOGIN} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server user name?} {}
  300. ; SMTP_SERVER_LOGIN = ""
  301. ;# {SMTP_SERVER_PASSWORD} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server password} {}
  302. ; SMTP_SERVER_PASSWORD = ""
  303. [Network]
  304. ;# {ConsoleUser} {} {User name for console account} {}
  305. ;; Configure the remote console user here. This will not actually be used
  306. ;; unless you use -console=rest at startup.
  307. ; ConsoleUser = "Test"
  308. ;# {ConsolePass} {} {Password for console account} {}
  309. ; ConsolePass = "secret"
  310. ;# {console_port} {} {Port for console connections} {} 0
  311. ; console_port = 0
  312. ;# {http_listener_port} {} {TCP Port for this simulator to listen on? (This must be unique to the simulator!)} {} 9000
  313. ;; Simulator HTTP port. This is not the region port, but the port the
  314. ;; entire simulator listens on. This port uses the TCP protocol, while
  315. ;; the region ports use UDP.
  316. ; http_listener_port = 9000
  317. ;# {ExternalHostNameForLSL} {} {Hostname to use for HTTP-IN URLs. This should be reachable from the internet.} {}
  318. ;; Hostname to use in llRequestURL/llRequestSecureURL
  319. ;; if not defined - default machine name is being used
  320. ;; (on Windows this mean NETBIOS name - useably only inside local network)
  321. ; ExternalHostNameForLSL = "127.0.0.1"
  322. ;# {shard} {} {Name to use for X-Secondlife-Shard header? (press enter if unsure)} {} OpenSim
  323. ;; What is reported as the "X-Secondlife-Shard"
  324. ;; Defaults to the user server url if not set
  325. ;; The old default is "OpenSim", set here for compatibility
  326. ;; The below is not commented for compatibility.
  327. shard = "OpenSim"
  328. ;# {user_agent} {} {User agent to report to web servers?} {} OpenSim LSL (Mozilla Compatible)
  329. ;; What is reported as the "User-Agent" when using llHTTPRequest
  330. ;; Defaults to not sent if not set here. See the notes section in the wiki
  331. ;; at http://wiki.secondlife.com/wiki/LlHTTPRequest for comments on adding
  332. ;; " (Mozilla Compatible)" to the text where there are problems with a web server
  333. ; user_agent = "OpenSim LSL (Mozilla Compatible)"
  334. [ClientStack.LindenUDP]
  335. ;; See OpensSimDefaults.ini for the throttle options. You can copy the
  336. ;; relevant sections and override them here.
  337. ;; DO NOT MODIFY OpenSimDefaults.ini, as your changes would be lost
  338. ;; with the next update!
  339. ;# {DisableFacelights} {} {Stop facelights from working?} {true false} false
  340. ;; Quash and remove any light properties from attachments not on the
  341. ;; hands. This allows flashlights and lanterns to function, but kills
  342. ;; silly vanity "Facelights" dead. Sorry, head mounted miner's lamps
  343. ;; will also be affected.
  344. ;; This is especially important in artistic builds that depend on lights
  345. ;; on the build for their appearance, since facelights will cause the
  346. ;; building's lights to possibly not be rendered.
  347. ; DisableFacelights = "false"
  348. [ClientStack.LindenCaps]
  349. ;; For the long list of capabilities, see OpenSimDefaults.ini
  350. ;; Here are the few ones you may want to change. Possible values
  351. ;; are:
  352. ;; "" -- empty, capability disabled
  353. ;; "localhost" -- capability enabled and served by the simulator
  354. ;; "<url>" -- capability enabled and served by some other server
  355. ;;
  356. ; These are enabled by default to localhost. Change if you see fit.
  357. Cap_GetTexture = "localhost"
  358. Cap_GetMesh = "localhost"
  359. ; This is disabled by default. Change if you see fit. Note that
  360. ; serving this cap from the simulators may lead to poor performace.
  361. Cap_WebFetchInventoryDescendents = ""
  362. [SimulatorFeatures]
  363. ;# {MapImageServerURI} {} {URL for the map server} {}
  364. ; Experimental new information sent in SimulatorFeatures cap for Kokua viewers
  365. ; meant to override the MapImage and search server url given at login, and varying
  366. ; on a sim-basis.
  367. ; Viewers that don't understand it, will ignore it
  368. ;MapImageServerURI = "http://127.0.0.1:9000/"
  369. ;# {SearchServerURI} {} {URL of the search server} {}
  370. ;SearchServerURI = "http://127.0.0.1:9000/"
  371. [Chat]
  372. ;# {whisper_distance} {} {Distance at which a whisper is heard, in meters?} {} 10
  373. ;; Distance in meters that whispers should travel.
  374. ; whisper_distance = 10
  375. ;# {say_distance} {} {Distance at which normal chat is heard, in meters?} {} 20
  376. ;; Distance in meters that ordinary chat should travel.
  377. ; say_distance = 20
  378. ;# {shout_distance} {Distance at which a shout is heard, in meters?} {} 100
  379. ;; Distance in meters that shouts should travel.
  380. ; shout_distance = 100
  381. [Messaging]
  382. ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule *}
  383. ;; Module to handle offline messaging. The core module requires an external
  384. ;; web service to do this. See OpenSim wiki.
  385. ; OfflineMessageModule = OfflineMessageModule
  386. ;# {OfflineMessageURL} {OfflineMessageModule:OfflineMessageModule} {URL of offline messaging service} {}
  387. ;; URL of web service for offline message storage
  388. ; OfflineMessageURL = http://yourserver/Offline.php
  389. ;# {MuteListModule} {OfflineMessageModule:OfflineMessageModule} {} {} MuteListModule
  390. ;; Mute list handler (not yet implemented). MUST BE SET to allow offline
  391. ;; messages to work
  392. ; MuteListModule = MuteListModule
  393. ;# {MuteListURL} {OfflineMessageModule:OfflineMessageModule} {} {} http://yourserver/Mute.php
  394. ;; URL of the web service that serves mute lists. Not currently used, but
  395. ;; must be set to allow offline messaging to work.
  396. ; MuteListURL = http://yourserver/Mute.php
  397. ;; Control whether group messages are forwarded to offline users.
  398. ;; Default is true.
  399. ;; This applies to the core groups module (Flotsam) only.
  400. ; ForwardOfflineGroupMessages = true
  401. [ODEPhysicsSettings]
  402. ;# {mesh_sculpted_prim} {[Startup]physics:OpenDynamicsEngine} {Mesh sculpties so they collide as they look?} {true false} true
  403. ;; Do we want to mesh sculpted prim to collide like they look?
  404. ;; If you are seeing sculpt texture decode problems
  405. ;; (messages such as "Decoded image with unhandled number of components: 0 shortly followed by a physcs exception")
  406. ;; then you might want to try setting this to false.
  407. ; mesh_sculpted_prim = true
  408. ;# {use_NINJA_physics_joints} {[Startup]physics:OpenDynamicsEngine} {Use jointed (NINJA) physics?} {true false} false
  409. ;; If you would like physics joints to be enabled through a special naming
  410. ;; convention in the client, set this to true.
  411. ;; (see NINJA Physics, http://opensimulator.org/wiki/NINJA_Physics)
  412. ; use_NINJA_physics_joints = false
  413. [RemoteAdmin]
  414. ;; This is the remote admin module, which uses XMLRPC requests to
  415. ;; manage regions from a web interface.
  416. ;# {enabled} {} {Enable the remote admin interface?} {true false} false
  417. ; enabled = false
  418. ;# {port} {enabled:true} {Port to use for the remote admin interface? (0 = default)} {} 0
  419. ;; Set this to a nonzero value to have remote admin use a different port
  420. ; port = 0
  421. ;# {access_password} {enabled:true} {Password for the remote admin interface} {}
  422. ;; This password is required to make any XMLRPC call (should be set as
  423. ;; the "password" parameter)
  424. ; access_password = ""
  425. ;# List the IP addresses allowed to call RemoteAdmin
  426. ;; If access_ip_addresses isn't set, then all IP addresses can access RemoteAdmin.
  427. ;; access_ip_addresses = 0.0.0.0, 0.0.0.0 ...
  428. ; access_ip_addresses =
  429. ;# {create_region_enable_voice} {enabled:true} {Enable voice for newly created regions?} {true false} false
  430. ;; set this variable to true if you want the create_region XmlRpc
  431. ;; call to unconditionally enable voice on all parcels for a newly
  432. ;; created region
  433. ; create_region_enable_voice = false
  434. ;# {create_region_public} {enabled:true} {Make newly created regions public?} {true false} false
  435. ;; set this variable to false if you want the create_region XmlRpc
  436. ;; call to create all regions as private per default (can be
  437. ;; overridden in the XmlRpc call)
  438. ; create_region_public = false
  439. ;# {enabled_methods} {enabled:true} {List of methods to allow, separated by |} {} all
  440. ;; enable only those methods you deem to be appropriate using a | delimited
  441. ;; whitelist.
  442. ;; For example:
  443. ;; enabled_methods = admin_broadcast|admin_save_oar|admin_save_xml
  444. ;; if this parameter is not specified but enabled = true, all methods
  445. ;; will be available
  446. ; enabled_methods = all
  447. ;; specify the default appearance for an avatar created through the remote
  448. ;; admin interface
  449. ;; This will only take effect is the file specified by the
  450. ;; default_appearance setting below exists
  451. ; default_male = Default Male
  452. ; default_female = Default Female
  453. ;; Update appearance copies inventory items and wearables of default
  454. ;; avatars. if this value is false, just worn assets are copied to the
  455. ;; Clothes folder; if true, all Clothes and Bodyparts subfolders are copied.
  456. ;; The receiver will wear the same items the default avatar did wear.
  457. ; copy_folders = false
  458. ;; Path to default appearance XML file that specifies the look of the
  459. ;; default avatars
  460. ; default_appearance = default_appearance.xml
  461. [Wind]
  462. ;# {enabled} {} {Enable wind module?} {true false} true
  463. ;; Enables the wind module.
  464. ; enabled = true
  465. ;# {wind_update_rate} {enabled:true} {Wind update rate in frames?} {} 150
  466. ;; How often should wind be updated, as a function of world frames.
  467. ;; Approximately 50 frames a second
  468. ; wind_update_rate = 150
  469. ;; The Default Wind Plugin to load
  470. ; wind_plugin = SimpleRandomWind
  471. ;; These settings are specific to the ConfigurableWind plugin
  472. ;; To use ConfigurableWind as the default, simply change wind_plugin
  473. ;; to ConfigurableWind and uncomment the following.
  474. ; avg_strength = 5.0
  475. ; avg_direction = 0.0
  476. ; var_strength = 5.0
  477. ; var_direction = 30.0
  478. ; rate_change = 1.0
  479. ;# {strength} {enabled:true wind_plugin:SimpleRandomWind} {Wind strength?} {} 1.0
  480. ;; This setting is specific to the SimpleRandomWind plugin
  481. ;; Adjusts wind strength. 0.0 = no wind, 1.0 = normal wind.
  482. ; strength = 1.0
  483. [LightShare]
  484. ;# {enable_windlight} {} {Enable LightShare technology?} {true false} false
  485. ;; This enables the transmission of Windlight scenes to supporting clients,
  486. ;; such as the Meta7 viewer.
  487. ;; It has no ill effect on viewers which do not support server-side
  488. ;; windlight settings.
  489. ; enable_windlight = false
  490. [DataSnapshot]
  491. ;# {index_sims} {} {Enable data snapshotting (search)?} {true false} false
  492. ;; The following set of configs pertains to search.
  493. ;; Set index_sims to true to enable search engines to index your
  494. ;; searchable data.
  495. ;; If false, no data will be exposed, DataSnapshot module will be off,
  496. ;; and you can ignore the rest of these search-related configs.
  497. ; index_sims = false
  498. ;# {data_exposure} {index_sims:true} {How much data should be exposed?} {minimum all} minimum
  499. ;; The variable data_exposure controls what the regions expose:
  500. ;; minimum: exposes only things explicitly marked for search
  501. ;; all: exposes everything
  502. ; data_exposure = minimum
  503. ;# {gridname} {index_sims:true} {Enter the name fo your grid} {} OSGrid
  504. ;; If search is on, change this to your grid name; will be ignored for
  505. ;; standalones
  506. ; gridname = "OSGrid"
  507. ;# {default_snapshot_period} {index_sims:true} {Period between data snapshots?} {} 1200
  508. ;; Period between data snapshots, in seconds. 20 minutes, for starters,
  509. ;; so that you see the initial changes fast.
  510. ;; Later, you may want to increase this to 3600 (1 hour) or more
  511. ; default_snapshot_period = 1200
  512. ;; This will be created in bin, if it doesn't exist already. It will hold
  513. ;; the data snapshots.
  514. ; snapshot_cache_directory = "DataSnapshot"
  515. ;# {data_services} {index_sims:true} {Data service URLs to register with?} {} http://metaverseink.com/cgi-bin/register.py
  516. ; This semicolon-separated string serves to notify specific data services
  517. ; about the existence of this sim. Uncomment if you want to index your
  518. ; data with this and/or other search providers.
  519. ; data_services="http://metaverseink.com/cgi-bin/register.py"
  520. [Economy]
  521. ;# {SellEnabled} {} {Enable selling for 0?} {true false} true
  522. ; The default economy module only implements just enough to allow free actions (transfer of objects, etc).
  523. ; There is no intention to implement anything further in core OpenSimulator.
  524. ; This functionality has to be provided by third party modules.
  525. ;; Enables selling things for $0. Default is true.
  526. ; SellEnabled = true
  527. ;# {PriceUpload} {} {Price for uploading?} {} 0
  528. ;; Money Unit fee to upload textures, animations etc. Default is 0.
  529. ; PriceUpload = 0
  530. ;# {PriceGroupCreate} {} {Fee for group creation} {} 0
  531. ;; Money Unit fee to create groups. Default is 0.
  532. ; PriceGroupCreate = 0
  533. [XEngine]
  534. ;# {Enabled} {} {Enable the XEngine scripting engine?} {true false} true
  535. ;; Enable this engine in this OpenSim instance
  536. ; Enabled = true
  537. ;; How many threads to keep alive even if nothing is happening
  538. ; MinThreads = 2
  539. ;; How many threads to start at maximum load
  540. ; MaxThreads = 100
  541. ;; Time a thread must be idle (in seconds) before it dies
  542. ; IdleTimeout = 60
  543. ;# {Priority} {Enabled:true} {Priority for script engine threads?} {Lowest BelowNormal Normal AboveNormal Highest} BelowNormal
  544. ;; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal",
  545. ;; "Highest")
  546. ; Priority = "BelowNormal"
  547. ;; Maximum number of events to queue for a script (excluding timers)
  548. ; MaxScriptEventQueue = 300
  549. ;; Stack size per script engine thread in bytes.
  550. ;; If you are experiencing StackOverflowExceptions you may want to increase this (e.g. double it).
  551. ;; The trade-off may be increased memory usage by the script engine.
  552. ; ThreadStackSize = 262144
  553. ;# {DeleteScriptsOnStartup} {} {Delete previously compiled script DLLs on startup?} (true false) true
  554. ;; Controls whether previously compiled scripts DLLs are deleted on sim restart. If you set this to false
  555. ;; then startup will be considerably faster since scripts won't need to be recompiled. However, then it becomes your responsibility to delete the
  556. ;; compiled scripts if you're recompiling OpenSim from source code and internal interfaces used
  557. ;; by scripts have changed.
  558. ; DeleteScriptsOnStartup = true
  559. ;; Set this to true (the default) to load each script into a separate
  560. ;; AppDomain.
  561. ;;
  562. ;; Setting this to false will load all script assemblies into the
  563. ;; current AppDomain, which will significantly improve script loading times.
  564. ;; It will also reduce initial per-script memory overhead.
  565. ;;
  566. ;; However, setting this to false will also prevent script DLLs from being unloaded from memory if the script is deleted.
  567. ;; This may cause an OutOfMemory problem over time when avatars with scripted attachments move in and out of the region.
  568. ;; Some Windows users have also reported script loading problems when AppDomainLoading = false
  569. ; AppDomainLoading = true
  570. ;# {DefaultCompileLanguage} {Enabled:true} {Default script language?} {lsl vb cs} lsl
  571. ;; Default language for scripts
  572. ; DefaultCompileLanguage = "lsl"
  573. ;# {AllowedCompilers} {Enabled:true} {Languages to allow (comma separated)?} {} lsl
  574. ;; List of allowed languages (lsl,vb,cs)
  575. ;; AllowedCompilers=lsl,cs,js,vb.
  576. ;; *warning*, non lsl languages have access to static methods such as
  577. ;; System.IO.File. Enable at your own risk.
  578. ; AllowedCompilers = "lsl"
  579. ;; Compile debug info (line numbers) into the script assemblies
  580. ; CompileWithDebugInformation = true
  581. ;; Allow the user of mod* functions. This allows a script to pass messages
  582. ;; to a region module via the modSendCommand() function
  583. ;; Default is false
  584. ; AllowMODFunctions = false
  585. ;# {AllowOSFunctions} {Enabled:true} {Allow OSFunctions? (DANGEROUS!)} {true false} false
  586. ;; Allow the use of os* functions (some are dangerous)
  587. ; AllowOSFunctions = false
  588. ;# {AllowLightShareFunctions} {Enabled:true [LightShare]enable_windlight:true} {Allow LightShare functions?} {true false} true
  589. ; Allow the user of LightShare functions
  590. ; AllowLightShareFunctions = false
  591. ;# {OSFunctionThreatLevel} {Enabled:true AllowOSFunctions:true} {OSFunction threat level? (DANGEROUS!)} {None VeryLow Low Moderate High VeryHigh Severe} VeryLow
  592. ;; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
  593. ;; See http://opensimulator.org/wiki/Threat_level for more information on these levels.
  594. ;; We do not recommend that use set a general level above Low unless you have a high level of trust
  595. ;; in all the users that can run scripts in your simulator. It is safer to explicitly
  596. ;; allow certain types of user to run higher threat level OSSL functions, as detailed later on.
  597. OSFunctionThreatLevel = VeryLow
  598. ; OS Functions enable/disable
  599. ; For each function, you can add one line, as shown
  600. ; The default for all functions allows them if below threat level
  601. ; true allows the use of the function unconditionally
  602. ; Allow_osSetRegionWaterHeight = true
  603. ; false disables the function completely
  604. ; Allow_osSetRegionWaterHeight = false
  605. ; Comma separated list of UUIDS allows the function for that list of UUIDS
  606. ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
  607. ; Comma separated list of owner classes that allow the function for a particular class of owners. Choices are
  608. ; - PARCEL_GROUP_MEMBER: allow if the object group is the same group as the parcel
  609. ; - PARCEL_OWNER: allow if the object owner is the parcel owner
  610. ; - ESTATE_MANAGER: allow if the object owner is an estate manager
  611. ; - ESTATE_OWNER: allow if the object owner is the estate owner
  612. ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb, PARCEL_OWNER, ESTATE_OWNER>, ...
  613. ; You can also use script creators as the uuid
  614. ; Creators_osSetRegionWaterHeight = <uuid>, ...
  615. ; If both Allow_ and Creators_ are given, effective permissions
  616. ; are the union of the two.
  617. ;# {EventLimit} {} {Amount of time a script can spend in an event handler} {} 30
  618. ;; Time a script can spend in an event handler before it is interrupted
  619. ; EventLimit = 30
  620. ;# {KillTimedOutScripts} {} {Kill script in case of event time overruns?} {true false} false
  621. ;; If a script overruns it's event limit, kill the script?
  622. ; KillTimedOutScripts = false
  623. ;# {ScriptDelayFactor} {} {Multiplier for scripting delays} {} 1.0
  624. ;; Sets the multiplier for the scripting delays
  625. ; ScriptDelayFactor = 1.0
  626. ;# {ScriptDistanceLimitFactor} {} {Multiplier for 10.0m distance limits?} {}
  627. ;; The factor the 10 m distances limits are multiplied by
  628. ; ScriptDistanceLimitFactor = 1.0
  629. ;# {NotecardLineReadCharsMax} {} {Maximum length of notecard line?} {} 255
  630. ;; Maximum length of notecard line read
  631. ;; Increasing this to large values potentially opens
  632. ;; up the system to malicious scripters
  633. ; NotecardLineReadCharsMax = 255
  634. ;# {SensorMaxRange} {} {Sensor range} {} 96.0
  635. ;; Sensor settings
  636. ; SensorMaxRange = 96.0
  637. ;# {SensorMaxResults} {} {Max sensor results returned?} {}
  638. ; SensorMaxResults = 16
  639. ;# {DisableUndergroundMovement} {} {Disable underground movement of prims} {true false} true
  640. ;; Disable underground movement of prims (default true); set to
  641. ;; false to allow script controlled underground positioning of
  642. ;; prims
  643. ; DisableUndergroundMovement = true
  644. ;# {ScriptEnginesPath} {} {Path to script assemblies} {} ScriptEngines
  645. ;; Path to script engine assemblies
  646. ;; Default is ./bin/ScriptEngines
  647. ; ScriptEnginesPath = "ScriptEngines"
  648. [MRM]
  649. ;; Enables the Mini Region Modules Script Engine.
  650. ; Enabled = false
  651. ;; Runs MRM in a Security Sandbox
  652. ;; WARNING: DISABLING IS A SECURITY RISK.
  653. ; Sandboxed = true
  654. ;; The level sandbox to use, adjust at your OWN RISK.
  655. ;; Valid values are:
  656. ;; * FullTrust
  657. ;; * SkipVerification
  658. ;; * Execution
  659. ;; * Nothing
  660. ;; * LocalIntranet
  661. ;; * Internet
  662. ;; * Everything
  663. ; SandboxLevel = "Internet"
  664. ;; Only allow Region Owners to run MRMs
  665. ;; May represent a security risk if you disable this.
  666. ; OwnerOnly = true
  667. [FreeSwitchVoice]
  668. ;; In order for this to work you need a functioning FreeSWITCH PBX set up.
  669. ;; Configuration details at http://opensimulator.org/wiki/Freeswitch_Module
  670. ; Enabled = false
  671. ;; You need to load a local service for a standalone, and a remote service
  672. ;; for a grid region. Use one of the lines below, as appropriate
  673. ;; If you're using Freeswitch on a standalone then you will also need to configure the [FreeswitchService] section in config-include/StandaloneCommon.ini
  674. ; LocalServiceModule = OpenSim.Services.FreeswitchService.dll:FreeswitchService
  675. ; LocalServiceModule = OpenSim.Services.Connectors.dll:RemoteFreeswitchConnector
  676. ;; If using a remote connector, specify the server URL
  677. ; FreeswitchServiceURL = http://my.grid.server:8004/fsapi
  678. [Groups]
  679. ;# {Enabled} {} {Enable groups?} {true false} false
  680. ;; Enables the groups module
  681. ; Enabled = false
  682. ;# {Module} {Enabled:true} {Groups module to use? (Use GroupsModule to use Flotsam/Simian)} {} Default
  683. ;; This is the current groups stub in Region.CoreModules.Avatar.Groups.
  684. ;; All the other settings below only really apply to the Flotsam/SimianGrid
  685. ;; GroupsModule.
  686. ;; This module can use a PHP XmlRpc server from the Flotsam project at
  687. ;; http://code.google.com/p/flotsam/
  688. ;; or from the SimianGrid project at http://code.google.com/p/openmetaverse
  689. ; Module = Default
  690. ;# {MessagingEnabled} {Module:GroupsModule} {Is groups messaging enabled?} {true false} true
  691. ; MessagingEnabled = true
  692. ;# {MessagingModule} {MessagingEnabled:true} {Module to use for groups messaging} {GroupsMessagingModule} GroupsMessagingModule
  693. ; MessagingModule = GroupsMessagingModule
  694. ;# {ServicesConnectorModule} {Module:GroupsModule} {Service connector to use for groups} {XmlRpcGroupsServicesConnector SimianGroupsServicesConnector} XmlRpcGroupsServicesConnector
  695. ;; Service connectors to the Groups Service as used in the GroupsModule. Select one depending on
  696. ;; whether you're using a Flotsam XmlRpc backend or a SimianGrid backend
  697. ; ServicesConnectorModule = XmlRpcGroupsServicesConnector
  698. ;# {GroupsServerURI} {Module:GroupsModule} {Groups Server URI} {}
  699. ;; URI for the groups services
  700. ;; e.g. http://yourxmlrpcserver.com/xmlrpc.php for Flotsam XmlRpc
  701. ;; or http://mygridserver.com:82/Grid/ for SimianGrid
  702. ; GroupsServerURI = ""
  703. ;# {NoticesEnabled} {Module:GroupsModule} {Enable group notices?} {true false} true
  704. ;; Enable Group Notices
  705. ; NoticesEnabled = true
  706. ;; This makes the Groups modules very chatty on the console.
  707. ; DebugEnabled = false
  708. ;; XmlRpc Security settings. These must match those set on your backend
  709. ;; groups service if the service is using these keys
  710. ; XmlRpcServiceReadKey = 1234
  711. ; XmlRpcServiceWriteKey = 1234
  712. [InterestManagement]
  713. ;# {UpdatePrioritizationScheme} {} {Update prioritization scheme?} {BestAvatarResponsiveness Time Distance SimpleAngularDistance FrontBack} BestAvatarResponsiveness
  714. ;; This section controls how state updates are prioritized for each client
  715. ;; Valid values are BestAvatarResponsiveness, Time, Distance,
  716. ;; SimpleAngularDistance, FrontBack
  717. ; UpdatePrioritizationScheme = BestAvatarResponsiveness
  718. [MediaOnAPrim]
  719. ;# {Enabled} {} {Enable Media-on-a-Prim (MOAP)} {true false} true
  720. ;; Enable media on a prim facilities
  721. ; Enabled = true;
  722. [NPC]
  723. ;# {Enabled} {} {Enable Non Player Character (NPC) facilities} {true false} false
  724. ; Enabled = false
  725. [Terrain]
  726. ;# {InitialTerrain} {} {Initial terrain type} {pinhead-island flat} pinhead-island
  727. ; InitialTerrain = "pinhead-island"
  728. [Architecture]
  729. ;# {Include-Architecture} {} {Choose one of the following architectures} {config-include/Standalone.ini config-include/StandaloneHypergrid.ini config-include/Grid.ini config-include/GridHypergrid.ini config-include/SimianGrid.ini config-include/HyperSimianGrid.ini} config-include/Standalone.ini
  730. ;; Uncomment one of the following includes as required. For instance, to create a standalone OpenSim,
  731. ;; uncomment Include-Architecture = "config-include/Standalone.ini"
  732. ;;
  733. ;; Then you will need to copy and edit the corresponding *Common.example file in config-include/
  734. ;; that the referenced .ini file goes on to include.
  735. ;;
  736. ;; For instance, if you chose "config-include/Standalone.ini" then you will need to copy
  737. ;; "config-include/StandaloneCommon.ini.example" to "config-include/StandaloneCommon.ini" before
  738. ;; editing it to set the database and backend services that OpenSim will use.
  739. ;;
  740. ; Include-Architecture = "config-include/Standalone.ini"
  741. ; Include-Architecture = "config-include/StandaloneHypergrid.ini"
  742. ; Include-Architecture = "config-include/Grid.ini"
  743. ; Include-Architecture = "config-include/GridHypergrid.ini"
  744. ; Include-Architecture = "config-include/SimianGrid.ini"
  745. ; Include-Architecture = "config-include/HyperSimianGrid.ini"