StandaloneCommon.ini.example 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. ; This is the main configuration file for standalone OpenSim instances
  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. ;EstateConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
  15. ; MSSQL
  16. ; Uncomment these lines if you want to use MSSQL storage
  17. ; Change the connection string to your db details
  18. ; The value for server property is shown in your SQL Server Management Studio login dialog.
  19. ; (This sample is the default of express edition)
  20. ;StorageProvider = "OpenSim.Data.MSSQL.dll"
  21. ;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;"
  22. [AssetService]
  23. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  24. AssetLoaderArgs = "assets/AssetSets.xml"
  25. [HGInventoryService]
  26. ProfileServerURI = "http://127.0.0.1:9000/profiles"
  27. [HGAssetService]
  28. ProfileServerURI = "http://127.0.0.1:9000/profiles"
  29. [HGInventoryAccessModule]
  30. ProfileServerURI = "http://127.0.0.1:9000/profiles"
  31. Gatekeeper = "http://127.0.0.1:9000"
  32. ;; If you want to protect your assets from being copied by foreign visitors
  33. ;; uncomment the next line. You may want to do this on sims that have licensed content.
  34. ; OutboundPermission = False
  35. [Modules]
  36. ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
  37. ;; Copy the config .example file into your own .ini file and change configs there
  38. ;AssetCaching = "GlynnTuckerAssetCache"
  39. ;AssetCaching = "FlotsamAssetCache"
  40. ;Include-FlotsamCache = "config-include/FlotsamCache.ini"
  41. AssetCaching = "CenomeMemoryAssetCache"
  42. Include-CenomeCache = "config-include/CenomeCache.ini"
  43. ;; Authorization is not on by default, as it depends on external php
  44. ;AuthorizationServices = "LocalAuthorizationServicesConnector"
  45. [GridService]
  46. ;; For in-memory region storage (default)
  47. StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
  48. ;;--- For MySql region storage (alternative)
  49. ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  50. ;; Directory for map tile images of remote regions
  51. ; MapTileDirectory = "./maptiles"
  52. ;; Next, we can specify properties of regions, including default and fallback regions
  53. ;; The syntax is: Region_<RegioName> = "<flags>"
  54. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut
  55. ;; For example:
  56. Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  57. ; === HG ONLY ===
  58. ;; change this to the address of your simulator
  59. Gatekeeper="http://127.0.0.1:9000"
  60. [Messaging]
  61. ; === HG ONLY ===
  62. ;; change this to the address of your simulator
  63. Gatekeeper = "http://127.0.0.1:9000"
  64. [LibraryModule]
  65. ; Set this if you want to change the name of the OpenSim Library
  66. ;LibraryName = "My World's Library"
  67. [LoginService]
  68. WelcomeMessage = "Welcome, Avatar!"
  69. GatekeeperURI = "http://127.0.0.1:9000"
  70. SRV_HomeURI = "http://127.0.0.1:9000"
  71. SRV_InventoryServerURI = "http://127.0.0.1:9000"
  72. SRV_AssetServerURI = "http://127.0.0.1:9000"
  73. SRV_ProfileServerURI = "http://127.0.0.1:9000"
  74. SRV_FriendsServerURI = "http://127.0.0.1:9000"
  75. SRV_IMServerURI = "http://127.0.0.1:9000"
  76. ;; For Viewer 2
  77. MapTileURL = "http://127.0.0.1:9000/"
  78. ;; Regular expressions for controlling which client versions are accepted/denied.
  79. ;; An empty string means nothing is checked.
  80. ;;
  81. ;; Example 1: allow only these 3 types of clients (any version of them)
  82. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  83. ;;
  84. ;; Example 2: allow all clients except these
  85. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  86. ;;
  87. ;; Note that these are regular expressions, so every character counts.
  88. ;; Also note that this is very weak security and should not be trusted as a reliable means
  89. ;; for keeping bad clients out; modified clients can fake their identifiers.
  90. ;;
  91. ;;
  92. ;AllowedClients = ""
  93. ;DeniedClients = ""
  94. [GatekeeperService]
  95. ExternalName = "http://127.0.0.1:9000"
  96. ; Does this grid allow incoming links to any region in it?
  97. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  98. AllowTeleportsToAnyRegion = true
  99. ;; Regular expressions for controlling which client versions are accepted/denied.
  100. ;; An empty string means nothing is checked.
  101. ;;
  102. ;; Example 1: allow only these 3 types of clients (any version of them)
  103. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  104. ;;
  105. ;; Example 2: allow all clients except these
  106. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  107. ;;
  108. ;; Note that these are regular expressions, so every character counts.
  109. ;; Also note that this is very weak security and should not be trusted as a reliable means
  110. ;; for keeping bad clients out; modified clients can fake their identifiers.
  111. ;;
  112. ;;
  113. ;AllowedClients = ""
  114. ;DeniedClients = ""
  115. [FreeswitchService]
  116. ;; If FreeSWITCH is not being used then you don't need to set any of these parameters
  117. ;;
  118. ;; The IP address of your FreeSWITCH server. The common case is for this to be the same as the server running the OpenSim standalone
  119. ;; This has to be set for the FreeSWITCH service to work
  120. ;; This address must be reachable by viewers.
  121. ;ServerAddress = 127.0.0.1
  122. ;; The following configuration parameters are optional
  123. ;; By default, this is the same as the ServerAddress
  124. ; Realm = 127.0.0.1
  125. ;; By default, this is the same as the ServerAddress on port 5060
  126. ; SIPProxy = 127.0.0.1:5060
  127. ;; Default is 5000ms
  128. ; DefaultTimeout = 5000
  129. ;; The dial plan context. Default is "default"
  130. ; Context = default
  131. ;; Currently unused
  132. ; UserName = freeswitch
  133. ;; Currently unused
  134. ; Password = password
  135. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  136. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  137. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  138. ;; production at your own risk
  139. ; EchoServer = 127.0.0.1
  140. ; EchoPort = 50505
  141. ; AttemptSTUN = false
  142. [GridInfoService]
  143. ; These settings are used to return information on a get_grid_info call.
  144. ; Client launcher scripts and third-party clients make use of this to
  145. ; autoconfigure the client and to provide a nice user experience. If you
  146. ; want to facilitate that, you should configure the settings here according
  147. ; to your grid or standalone setup.
  148. ;
  149. ; See http://opensimulator.org/wiki/GridInfo
  150. ; login uri: for grid this is the login server URI
  151. login = http://127.0.0.1:9000/
  152. ; long grid name: the long name of your grid
  153. gridname = "the lost continent of hippo"
  154. ; short grid name: the short name of your grid
  155. gridnick = "hippogrid"
  156. ; login page: optional: if it exists it will be used to tell the client to use
  157. ; this as splash page
  158. ; currently unused
  159. ;welcome = http://127.0.0.1/welcome
  160. ; helper uri: optional: if it exists if will be used to tell the client to use
  161. ; this for all economy related things
  162. ; currently unused
  163. ;economy = http://127.0.0.1:9000/
  164. ; web page of grid: optional: page providing further information about your grid
  165. ; currently unused
  166. ;about = http://127.0.0.1/about/
  167. ; account creation: optional: page providing further information about obtaining
  168. ; a user account on your grid
  169. ; currently unused
  170. ;register = http://127.0.0.1/register
  171. ; help: optional: page providing further assistance for users of your grid
  172. ; currently unused
  173. ;help = http://127.0.0.1/help
  174. ; password help: optional: page providing password assistance for users of your grid
  175. ; currently unused
  176. ;password = http://127.0.0.1/password
  177. [MapImageService]
  178. ; Set this if you want to change the default
  179. ; TilesStoragePath = "maptiles"