GridCommon.ini.example 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. ;; uncomment the next line. You may want to do this on sims that have licensed content.
  135. ; OutboundPermission = False
  136. ;; Send visual reminder to local users that their inventories are unavailable while they are traveling
  137. ;; and available when they return. True by default.
  138. ;RestrictInventoryAccessAbroad = True
  139. [HGAssetService]
  140. ;
  141. ; === HG ONLY ===
  142. ; Change this to your server
  143. ; accessible from other grids
  144. ;
  145. HomeURI = "http://mygridserver.com:8002"
  146. ;; The asset types that this grid can export to / import from other grids.
  147. ;; Comma separated.
  148. ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely:
  149. ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText,
  150. ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh
  151. ;;
  152. ;; Leave blank or commented if you don't want to apply any restrictions.
  153. ;; A more strict, but still reasonable, policy may be to disallow the exchange
  154. ;; of scripts, like so:
  155. ; DisallowExport ="LSLText"
  156. ; DisallowImport ="LSLBytecode"
  157. [HGFriendsModule]
  158. ; User level required to be able to send friendship invitations to foreign users
  159. ;LevelHGFriends = 0;
  160. [UserAgentService]
  161. ;
  162. ; === HG ONLY ===
  163. ; Change this to your user agent server (HG robust)
  164. ;
  165. UserAgentServerURI = "http://mygridserver.com:8002"
  166. [MapImageService]
  167. MapImageServerURI = "http://mygridserver.com:8003"
  168. [AuthorizationService]
  169. ; If you have regions with access restrictions
  170. ; specify them here using the convention
  171. ; Region_<Region_Name> = <flags>
  172. ; Valid flags are:
  173. ; DisallowForeigners -- HG visitors not allowed
  174. ; DisallowResidents -- only Admins and Managers allowed
  175. ; Example:
  176. ; Region_Test_1 = "DisallowForeigners"
  177. ;; Uncomment if you are using SimianGrid for grid services
  178. [SimianGrid]
  179. ;; SimianGrid services URL
  180. ;; SimianServiceURL = "http://grid.sciencesim.com/Grid/"
  181. ;; Capability assigned by the grid administrator for the simulator
  182. ;; SimulatorCapability = "00000000-0000-0000-0000-000000000000"