StandaloneCommon.ini.example 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. [HGInventoryService]
  39. HomeURI = "http://127.0.0.1:9000"
  40. [HGAssetService]
  41. HomeURI = "http://127.0.0.1:9000"
  42. [HGInventoryAccessModule]
  43. HomeURI = "http://127.0.0.1:9000"
  44. Gatekeeper = "http://127.0.0.1:9000"
  45. ;; If you want to protect your assets from being copied by foreign visitors
  46. ;; uncomment the next line. You may want to do this on sims that have licensed content.
  47. ; OutboundPermission = False
  48. [GridService]
  49. ;; For in-memory region storage (default)
  50. StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
  51. ;;--- For MySql region storage (alternative)
  52. ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  53. ;; Directory for map tile images of remote regions
  54. ; MapTileDirectory = "./maptiles"
  55. ;; Next, we can specify properties of regions, including default and fallback regions
  56. ;; The syntax is: Region_<RegioName> = "<flags>"
  57. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut
  58. ;; For example:
  59. Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  60. ; === HG ONLY ===
  61. ;; change this to the address of your simulator
  62. Gatekeeper="http://127.0.0.1:9000"
  63. [Messaging]
  64. ; === HG ONLY ===
  65. ;; change this to the address of your simulator
  66. Gatekeeper = "http://127.0.0.1:9000"
  67. [LibraryModule]
  68. ; Set this if you want to change the name of the OpenSim Library
  69. ;LibraryName = "My World's Library"
  70. [LoginService]
  71. WelcomeMessage = "Welcome, Avatar!"
  72. GatekeeperURI = "http://127.0.0.1:9000"
  73. SRV_HomeURI = "http://127.0.0.1:9000"
  74. SRV_InventoryServerURI = "http://127.0.0.1:9000"
  75. SRV_AssetServerURI = "http://127.0.0.1:9000"
  76. SRV_ProfileServerURI = "http://127.0.0.1:9000"
  77. SRV_FriendsServerURI = "http://127.0.0.1:9000"
  78. SRV_IMServerURI = "http://127.0.0.1:9000"
  79. ;; For Viewer 2
  80. MapTileURL = "http://127.0.0.1:9000/"
  81. ;; Ask co-operative viewers to use a different currency name
  82. ;Currency = ""
  83. ;; Regular expressions for controlling which client versions are accepted/denied.
  84. ;; An empty string means nothing is checked.
  85. ;;
  86. ;; Example 1: allow only these 3 types of clients (any version of them)
  87. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  88. ;;
  89. ;; Example 2: allow all clients except these
  90. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  91. ;;
  92. ;; Note that these are regular expressions, so every character counts.
  93. ;; Also note that this is very weak security and should not be trusted as a reliable means
  94. ;; for keeping bad clients out; modified clients can fake their identifiers.
  95. ;;
  96. ;;
  97. ;AllowedClients = ""
  98. ;DeniedClients = ""
  99. [GatekeeperService]
  100. ExternalName = "http://127.0.0.1:9000"
  101. ; Does this grid allow incoming links to any region in it?
  102. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  103. AllowTeleportsToAnyRegion = true
  104. ;; Regular expressions for controlling which client versions are accepted/denied.
  105. ;; An empty string means nothing is checked.
  106. ;;
  107. ;; Example 1: allow only these 3 types of clients (any version of them)
  108. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  109. ;;
  110. ;; Example 2: allow all clients except these
  111. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  112. ;;
  113. ;; Note that these are regular expressions, so every character counts.
  114. ;; Also note that this is very weak security and should not be trusted as a reliable means
  115. ;; for keeping bad clients out; modified clients can fake their identifiers.
  116. ;;
  117. ;;
  118. ;AllowedClients = ""
  119. ;DeniedClients = ""
  120. [FreeswitchService]
  121. ;; If FreeSWITCH is not being used then you don't need to set any of these parameters
  122. ;;
  123. ;; The IP address of your FreeSWITCH server. The common case is for this to be the same as the server running the OpenSim standalone
  124. ;; This has to be set for the FreeSWITCH service to work
  125. ;; This address must be reachable by viewers.
  126. ;ServerAddress = 127.0.0.1
  127. ;; The following configuration parameters are optional
  128. ;; By default, this is the same as the ServerAddress
  129. ; Realm = 127.0.0.1
  130. ;; By default, this is the same as the ServerAddress on port 5060
  131. ; SIPProxy = 127.0.0.1:5060
  132. ;; Default is 5000ms
  133. ; DefaultTimeout = 5000
  134. ;; The dial plan context. Default is "default"
  135. ; Context = default
  136. ;; Currently unused
  137. ; UserName = freeswitch
  138. ;; Currently unused
  139. ; Password = password
  140. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  141. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  142. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  143. ;; production at your own risk
  144. ; EchoServer = 127.0.0.1
  145. ; EchoPort = 50505
  146. ; AttemptSTUN = false
  147. [GridInfoService]
  148. ; These settings are used to return information on a get_grid_info call.
  149. ; Client launcher scripts and third-party clients make use of this to
  150. ; autoconfigure the client and to provide a nice user experience. If you
  151. ; want to facilitate that, you should configure the settings here according
  152. ; to your grid or standalone setup.
  153. ;
  154. ; See http://opensimulator.org/wiki/GridInfo
  155. ; login uri: for grid this is the login server URI
  156. login = http://127.0.0.1:9000/
  157. ; long grid name: the long name of your grid
  158. gridname = "the lost continent of hippo"
  159. ; short grid name: the short name of your grid
  160. gridnick = "hippogrid"
  161. ; login page: optional: if it exists it will be used to tell the client to use
  162. ; this as splash page
  163. ; currently unused
  164. ;welcome = http://127.0.0.1/welcome
  165. ; helper uri: optional: if it exists if will be used to tell the client to use
  166. ; this for all economy related things
  167. ; currently unused
  168. ;economy = http://127.0.0.1:9000/
  169. ; web page of grid: optional: page providing further information about your grid
  170. ; currently unused
  171. ;about = http://127.0.0.1/about/
  172. ; account creation: optional: page providing further information about obtaining
  173. ; a user account on your grid
  174. ; currently unused
  175. ;register = http://127.0.0.1/register
  176. ; help: optional: page providing further assistance for users of your grid
  177. ; currently unused
  178. ;help = http://127.0.0.1/help
  179. ; password help: optional: page providing password assistance for users of your grid
  180. ; currently unused
  181. ;password = http://127.0.0.1/password
  182. [MapImageService]
  183. ; Set this if you want to change the default
  184. ; TilesStoragePath = "maptiles"
  185. [AuthorizationService]
  186. ; If you have regions with access restrictions
  187. ; specify them here using the convention
  188. ; Region_<Region_Name> = <flags>
  189. ; Valid flags are:
  190. ; DisallowForeigners -- HG visitors not allowed
  191. ; DisallowResidents -- only Admins and Managers allowed
  192. ; Example:
  193. ; Region_Test_1 = "DisallowForeigners"