1
0

StandaloneCommon.ini.example 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. ; This is the main configuration file for an instance of OpenSim running in standalone mode
  2. [DatabaseService]
  3. ;
  4. ; ### Choose the DB
  5. ;
  6. ; SQLite
  7. Include-Storage = "config-include/storage/SQLiteStandalone.ini";
  8. ; MySql
  9. ; Uncomment these lines if you want to use mysql storage
  10. ; Change the connection string to your db details
  11. ;StorageProvider = "OpenSim.Data.MySQL.dll"
  12. ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
  13. ; Uncomment this line if you are using MySQL and want to use a different database for estates.
  14. ; The usual application for this is to allow estates to be spread out across multiple simulators by share the same database.
  15. ; Most people won't need to do this so only uncomment if you know what you're doing.
  16. ;EstateConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
  17. ; MSSQL
  18. ; Uncomment these lines if you want to use MSSQL storage
  19. ; Change the connection string to your db details
  20. ; The value for server property is shown in your SQL Server Management Studio login dialog.
  21. ; (This sample is the default of express edition)
  22. ;StorageProvider = "OpenSim.Data.MSSQL.dll"
  23. ;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;"
  24. [Modules]
  25. ;; Choose one cache module and the corresponding config file, if it exists.
  26. ;; Copy the config .example file into your own .ini file and alter that
  27. ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
  28. AssetCaching = "FlotsamAssetCache"
  29. Include-FlotsamCache = "config-include/FlotsamCache.ini"
  30. ;AssetCaching = "CenomeMemoryAssetCache"
  31. ;Include-CenomeCache = "config-include/CenomeCache.ini"
  32. ;AssetCaching = "GlynnTuckerAssetCache"
  33. ;; Authorization is not on by default, as it depends on external php
  34. ;AuthorizationServices = "LocalAuthorizationServicesConnector"
  35. [AssetService]
  36. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  37. AssetLoaderArgs = "assets/AssetSets.xml"
  38. [GridService]
  39. ;; For in-memory region storage (default)
  40. StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
  41. ;;--- For MySql region storage (alternative)
  42. ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  43. ;; Directory for map tile images of remote regions
  44. ; MapTileDirectory = "./maptiles"
  45. ;; Next, we can specify properties of regions, including default and fallback regions
  46. ;; The syntax is: Region_<RegioName> = "<flags>"
  47. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut
  48. ;; For example:
  49. Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  50. ; === HG ONLY ===
  51. ;; change this to the address of your simulator
  52. Gatekeeper="http://127.0.0.1:9000"
  53. [LibraryModule]
  54. ; Set this if you want to change the name of the OpenSim Library
  55. ;LibraryName = "My World's Library"
  56. [LoginService]
  57. WelcomeMessage = "Welcome, Avatar!"
  58. GatekeeperURI = "http://127.0.0.1:9000"
  59. SRV_HomeURI = "http://127.0.0.1:9000"
  60. SRV_InventoryServerURI = "http://127.0.0.1:9000"
  61. SRV_AssetServerURI = "http://127.0.0.1:9000"
  62. SRV_ProfileServerURI = "http://127.0.0.1:9000"
  63. SRV_FriendsServerURI = "http://127.0.0.1:9000"
  64. SRV_IMServerURI = "http://127.0.0.1:9000"
  65. ;; For Viewer 2
  66. MapTileURL = "http://127.0.0.1:9000/"
  67. ;; Ask co-operative viewers to use a different currency name
  68. ;Currency = ""
  69. ;; Regular expressions for controlling which client versions are accepted/denied.
  70. ;; An empty string means nothing is checked.
  71. ;;
  72. ;; Example 1: allow only these 3 types of clients (any version of them)
  73. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  74. ;;
  75. ;; Example 2: allow all clients except these
  76. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  77. ;;
  78. ;; Note that these are regular expressions, so every character counts.
  79. ;; Also note that this is very weak security and should not be trusted as a reliable means
  80. ;; for keeping bad clients out; modified clients can fake their identifiers.
  81. ;;
  82. ;;
  83. ;AllowedClients = ""
  84. ;DeniedClients = ""
  85. [FreeswitchService]
  86. ;; If FreeSWITCH is not being used then you don't need to set any of these parameters
  87. ;;
  88. ;; The IP address of your FreeSWITCH server. The common case is for this to be the same as the server running the OpenSim standalone
  89. ;; This has to be set for the FreeSWITCH service to work
  90. ;; This address must be reachable by viewers.
  91. ;ServerAddress = 127.0.0.1
  92. ;; The following configuration parameters are optional
  93. ;; By default, this is the same as the ServerAddress
  94. ; Realm = 127.0.0.1
  95. ;; By default, this is the same as the ServerAddress on port 5060
  96. ; SIPProxy = 127.0.0.1:5060
  97. ;; Default is 5000ms
  98. ; DefaultTimeout = 5000
  99. ;; The dial plan context. Default is "default"
  100. ; Context = default
  101. ;; Currently unused
  102. ; UserName = freeswitch
  103. ;; Currently unused
  104. ; Password = password
  105. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  106. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  107. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  108. ;; production at your own risk
  109. ; EchoServer = 127.0.0.1
  110. ; EchoPort = 50505
  111. ; AttemptSTUN = false
  112. [GridInfoService]
  113. ; These settings are used to return information on a get_grid_info call.
  114. ; Client launcher scripts and third-party clients make use of this to
  115. ; autoconfigure the client and to provide a nice user experience. If you
  116. ; want to facilitate that, you should configure the settings here according
  117. ; to your grid or standalone setup.
  118. ;
  119. ; See http://opensimulator.org/wiki/GridInfo
  120. ; login uri: for grid this is the login server URI
  121. login = http://127.0.0.1:9000/
  122. ; long grid name: the long name of your grid
  123. gridname = "the lost continent of hippo"
  124. ; short grid name: the short name of your grid
  125. gridnick = "hippogrid"
  126. ; login page: optional: if it exists it will be used to tell the client to use
  127. ; this as splash page
  128. ; currently unused
  129. ;welcome = http://127.0.0.1/welcome
  130. ; helper uri: optional: if it exists if will be used to tell the client to use
  131. ; this for all economy related things
  132. ; currently unused
  133. ;economy = http://127.0.0.1:9000/
  134. ; web page of grid: optional: page providing further information about your grid
  135. ; currently unused
  136. ;about = http://127.0.0.1/about/
  137. ; account creation: optional: page providing further information about obtaining
  138. ; a user account on your grid
  139. ; currently unused
  140. ;register = http://127.0.0.1/register
  141. ; help: optional: page providing further assistance for users of your grid
  142. ; currently unused
  143. ;help = http://127.0.0.1/help
  144. ; password help: optional: page providing password assistance for users of your grid
  145. ; currently unused
  146. ;password = http://127.0.0.1/password
  147. ; HG address of the gatekeeper, if you have one
  148. ; this is the entry point for all the regions of the world
  149. ; gatekeeper = http://127.0.0.1:9000/
  150. ; HG user domain, if you have one
  151. ; this is the entry point for all user-related HG services
  152. ; uas = http://127.0.0.1:9000/
  153. [MapImageService]
  154. ; Set this if you want to change the default
  155. ; TilesStoragePath = "maptiles"
  156. [AuthorizationService]
  157. ; If you have regions with access restrictions
  158. ; specify them here using the convention
  159. ; Region_<Region_Name> = <flags>
  160. ; Valid flags are:
  161. ; DisallowForeigners -- HG visitors not allowed
  162. ; DisallowResidents -- only Admins and Managers allowed
  163. ; Example:
  164. ; Region_Test_1 = "DisallowForeigners"
  165. ;;
  166. ;; HG configurations
  167. ;;
  168. [GatekeeperService]
  169. ExternalName = "http://127.0.0.1:9000"
  170. ; Does this grid allow incoming links to any region in it?
  171. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  172. AllowTeleportsToAnyRegion = true
  173. ;; Regular expressions for controlling which client versions are accepted/denied.
  174. ;; An empty string means nothing is checked.
  175. ;;
  176. ;; Example 1: allow only these 3 types of clients (any version of them)
  177. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  178. ;;
  179. ;; Example 2: allow all clients except these
  180. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  181. ;;
  182. ;; Note that these are regular expressions, so every character counts.
  183. ;; Also note that this is very weak security and should not be trusted as a reliable means
  184. ;; for keeping bad clients out; modified clients can fake their identifiers.
  185. ;;
  186. ;;
  187. ;AllowedClients = ""
  188. ;DeniedClients = ""
  189. ;; Are foreign visitors allowed?
  190. ;ForeignAgentsAllowed = true
  191. ;;
  192. ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept.
  193. ;; Leave blank or commented for no exceptions.
  194. ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002"
  195. ;;
  196. ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept
  197. ;; Leave blank or commented for no exceptions.
  198. ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002"
  199. [UserAgentService]
  200. ;; User level required to be contacted from other grids
  201. ;LevelOutsideContacts = 0
  202. ;; Restrictions on destinations of local users.
  203. ;; Are local users allowed to visit other grids?
  204. ;; What user level? Use variables of this forrm:
  205. ;; ForeignTripsAllowed_Level_<UserLevel> = true | false
  206. ;; (the default is true)
  207. ;; For example:
  208. ; ForeignTripsAllowed_Level_0 = false
  209. ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it
  210. ;;
  211. ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept
  212. ;; Leave blank or commented for no exceptions.
  213. ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002"
  214. ;;
  215. ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept.
  216. ;; Leave blank or commented for no exceptions.
  217. ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002"
  218. [HGInventoryService]
  219. HomeURI = "http://127.0.0.1:9000"
  220. [HGAssetService]
  221. HomeURI = "http://127.0.0.1:9000"
  222. ;; The asset types that this grid can export to / import from other grids.
  223. ;; Comma separated.
  224. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  225. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  226. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  227. ;;
  228. ;; Leave blank or commented if you don't want to apply any restrictions.
  229. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  230. ;; of scripts, like so:
  231. ; DisallowExport ="LSLText"
  232. ; DisallowImport ="LSLBytecode"
  233. [HGInventoryAccessModule]
  234. HomeURI = "http://127.0.0.1:9000"
  235. Gatekeeper = "http://127.0.0.1:9000"
  236. ;; If you want to protect your assets from being copied by foreign visitors
  237. ;; uncomment the next line. You may want to do this on sims that have licensed content.
  238. ;; true = allow exports, false = disallow exports. True by default.
  239. ; OutboundPermission = True
  240. ;; Send visual reminder to local users that their inventories are unavailable while they are traveling
  241. ;; and available when they return. True by default.
  242. ;RestrictInventoryAccessAbroad = True
  243. [HGFriendsModule]
  244. ; User level required to be able to send friendship invitations to foreign users
  245. ;LevelHGFriends = 0;
  246. [Messaging]
  247. ; === HG ONLY ===
  248. ;; change this to the address of your simulator
  249. Gatekeeper = "http://127.0.0.1:9000"
  250. [EntityTransfer]
  251. ;; User level from which local users are allowed to HG teleport. Default 0 (all users)
  252. ;LevelHGTeleport = 0
  253. ;; Are local users restricted from taking their appearance abroad?
  254. ;; Default is no restrictions
  255. ;RestrictAppearanceAbroad = false
  256. ;; If appearance is restricted, which accounts' appearances are allowed to be exported?
  257. ;; Comma-separated list of account names
  258. AccountForAppearance = "Test User, Astronaut Smith"