GridCommon.ini.example 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. ; This is the main configuration file for an instance of OpenSim running in grid 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. ; PGSQL
  25. ; Uncomment these lines if you want to use PGSQL storage
  26. ; Change the connection string to your db details
  27. ;StorageProvider = "OpenSim.Data.PGSQL.dll"
  28. ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
  29. [Hypergrid]
  30. ; Uncomment the variables in this section only if you are in
  31. ; Hypergrid configuration. Otherwise, ignore.
  32. ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}
  33. ;; If this is a standalone world, this is the address of this instance.
  34. ;; If this is a grided simulator, this is the address of the external robust server that
  35. ;; runs the UserAgentsService.
  36. ;; For example http://myworld.com:9000 or http://myworld.com:8002
  37. ;; This is a default that can be overwritten in some sections.
  38. ; HomeURI = "http://127.0.0.1:9000"
  39. ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}
  40. ;; If this is a standalone world, this is the address of this instance.
  41. ;; If this is a grided simulator, this is the address of the external robust server
  42. ;; that runs the Gatekeeper service.
  43. ;; For example http://myworld.com:9000 or http://myworld.com:8002
  44. ;; This is a default that can be overwritten in some sections.
  45. ; GatekeeperURI = "http://127.0.0.1:9000"
  46. [Modules]
  47. ;; Choose one cache module and the corresponding config file, if it exists.
  48. ;; Copy the config .example file into your own .ini file and adapt that.
  49. ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
  50. AssetCaching = "FlotsamAssetCache"
  51. Include-FlotsamCache = "config-include/FlotsamCache.ini"
  52. ;AssetCaching = "CenomeMemoryAssetCache"
  53. ;Include-CenomeCache = "config-include/CenomeCache.ini"
  54. ;AssetCaching = "GlynnTuckerAssetCache"
  55. ;; Optionally, the port for the LLProxyLoginModule module can be changed
  56. ;Setup_LLProxyLoginModule = "9090/"
  57. ;; Authorization is not on by default, as it depends on external php
  58. ;AuthorizationServices = "RemoteAuthorizationServicesConnector"
  59. [AssetService]
  60. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  61. AssetLoaderArgs = "assets/AssetSets.xml"
  62. ;
  63. ; Change this to your grid-wide asset server. Do not add a slash to the end of any of these addresses.
  64. ;
  65. AssetServerURI = "http://mygridserver.com:8003"
  66. [InventoryService]
  67. ;
  68. ; Change this to your grid-wide inventory server
  69. ;
  70. InventoryServerURI = "http://mygridserver.com:8003"
  71. [GridInfo]
  72. ;
  73. ; Change this to your grid info service
  74. ;
  75. GridInfoURI = "http://mygridserver.com:8002"
  76. [GridService]
  77. ;
  78. ; Change this to your grid-wide grid server
  79. ;
  80. GridServerURI = "http://mygridserver.com:8003"
  81. ;AllowHypergridMapSearch = true
  82. ;; Directory for map tile images of linked regions
  83. ; MapTileDirectory = "./maptiles"
  84. ; === HG ONLY ===
  85. ;; Change this to the address of your Gatekeeper service
  86. ;; (usually bundled with the rest of the services in one
  87. ;; Robust server in port 8002, but not always)
  88. Gatekeeper="http://mygridserver.com:8002"
  89. [Messaging]
  90. ; === HG ONLY ===
  91. ;; Change this to the address of your Gatekeeper service
  92. ;; (usually bundled with the rest of the services in one
  93. ;; Robust server in port 8002, but not always)
  94. Gatekeeper = "http://mygridserver.com:8002"
  95. [AvatarService]
  96. ;
  97. ; Change this to your grid-wide grid server
  98. ;
  99. AvatarServerURI = "http://mygridserver.com:8003"
  100. [PresenceService]
  101. ;
  102. ; Change this to your grid-wide presence server
  103. ;
  104. PresenceServerURI = "http://mygridserver.com:8003"
  105. [UserAccountService]
  106. ;
  107. ; Change this to your grid-wide user accounts server
  108. ;
  109. UserAccountServerURI = "http://mygridserver.com:8003"
  110. [GridUserService]
  111. ;
  112. ; Change this to your grid-wide user accounts server
  113. ;
  114. GridUserServerURI = "http://mygridserver.com:8003"
  115. [AuthenticationService]
  116. ;
  117. ; Change this to your grid-wide authentication server
  118. ;
  119. AuthenticationServerURI = "http://mygridserver.com:8003"
  120. [FriendsService]
  121. ;
  122. ; Change this to your grid-wide friends server
  123. ;
  124. FriendsServerURI = "http://mygridserver.com:8003"
  125. [HGInventoryAccessModule]
  126. ;
  127. ; === HG ONLY ===
  128. ; Change this to your server
  129. ; accessible from other grids
  130. ;
  131. HomeURI = "http://mygridserver.com:8002"
  132. Gatekeeper = "http://mygridserver.com:8002"
  133. ;; If you want to protect your assets from being copied by foreign visitors
  134. ;; set this to false. You may want to do this on sims that have licensed content.
  135. ;; Default is true.
  136. ; OutboundPermission = True
  137. ;; Send visual reminder to local users that their inventories are unavailable while they are traveling
  138. ;; and available when they return. True by default.
  139. ;RestrictInventoryAccessAbroad = True
  140. ;; Warning: advanced and unusual. Default is false.
  141. ;; Enables configurations where grids share user services, including inventory,
  142. ;; while separating regions' assets from users' assets. Asset transfer between
  143. ;; the users' asset server and the regions' asset server is done in HG-like manner.
  144. ; CheckSeparateAssets = false
  145. ; RegionHGAssetServerURI = http://mygridserver.com:8002
  146. [HGAssetService]
  147. ;
  148. ; === HG ONLY ===
  149. ; Change this to your server
  150. ; accessible from other grids
  151. ;
  152. HomeURI = "http://mygridserver.com:8002"
  153. ;; The asset types that this grid can export to / import from other grids.
  154. ;; Comma separated.
  155. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  156. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  157. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  158. ;;
  159. ;; Leave blank or commented if you don't want to apply any restrictions.
  160. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  161. ;; of scripts, like so:
  162. ; DisallowExport ="LSLText"
  163. ; DisallowImport ="LSLBytecode"
  164. [HGFriendsModule]
  165. ; User level required to be able to send friendship invitations to foreign users
  166. ;LevelHGFriends = 0;
  167. [UserAgentService]
  168. ;
  169. ; === HG ONLY ===
  170. ; Change this to your user agent server (HG robust)
  171. ;
  172. UserAgentServerURI = "http://mygridserver.com:8002"
  173. [MapImageService]
  174. MapImageServerURI = "http://mygridserver.com:8003"
  175. [AuthorizationService]
  176. ; If you have regions with access restrictions
  177. ; specify them here using the convention
  178. ; Region_<Region_Name> = <flags>
  179. ; Valid flags are:
  180. ; DisallowForeigners -- HG visitors not allowed
  181. ; DisallowResidents -- only Admins and Managers allowed
  182. ; Example:
  183. ; Region_Test_1 = "DisallowForeigners"
  184. ;; Uncomment if you are using SimianGrid for grid services
  185. [SimianGrid]
  186. ;; SimianGrid services URL
  187. ;; SimianServiceURL = "http://grid.sciencesim.com/Grid/"
  188. ;; Capability assigned by the grid administrator for the simulator
  189. ;; SimulatorCapability = "00000000-0000-0000-0000-000000000000"