GridCommon.ini.example 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. [DatabaseService]
  2. ;
  3. ; ### Choose the DB
  4. ;
  5. ; SQLite
  6. Include-Storage = "config-include/storage/SQLiteStandalone.ini";
  7. ; MySql
  8. ; Uncomment these lines if you want to use mysql storage
  9. ; Change the connection string to your db details
  10. ;StorageProvider = "OpenSim.Data.MySQL.dll"
  11. ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
  12. ; Uncomment this line if you are using MySQL and want to use a different database for estates
  13. ;EstateConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;Old Guids=true;"
  14. ; MSSQL
  15. ; Uncomment these lines if you want to use MSSQL storage
  16. ; Change the connection string to your db details
  17. ; The value for server property is shown in your SQL Server Management Studio login dialog.
  18. ; (This sample is the default of express edition)
  19. ;StorageProvider = "OpenSim.Data.MSSQL.dll"
  20. ;ConnectionString = "Server=localhost\SQLEXPRESS;Database=opensim;User Id=opensim; password=***;"
  21. [AssetService]
  22. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  23. AssetLoaderArgs = "assets/AssetSets.xml"
  24. ;
  25. ; Change this to your grid-wide asset server. Do not add a slash to the end of any of these addresses.
  26. ;
  27. AssetServerURI = "http://myassetserver.com:8003"
  28. [InventoryService]
  29. ;
  30. ; Change this to your grid-wide inventory server
  31. ;
  32. InventoryServerURI = "http://myinventoryserver.com:8003"
  33. [GridService]
  34. ;
  35. ; Change this to your grid-wide grid server
  36. ;
  37. GridServerURI = "http://mygridserver.com:8003"
  38. ;AllowHypergridMapSearch = true
  39. ;; Directory for map tile images of linked regions
  40. ; MapTileDirectory = "./maptiles"
  41. ; === HG ONLY ===
  42. ;; Change this to the address of your Gatekeeper service
  43. ;; (usually bundled with the rest of the services in one
  44. ;; Robust server in port 8002, but not always)
  45. Gatekeeper="http://mygridserver.com:8002"
  46. [Messaging]
  47. ; === HG ONLY ===
  48. ;; Change this to the address of your Gatekeeper service
  49. ;; (usually bundled with the rest of the services in one
  50. ;; Robust server in port 8002, but not always)
  51. Gatekeeper = "http://mygridserver.com:8002"
  52. [AvatarService]
  53. ;
  54. ; Change this to your grid-wide grid server
  55. ;
  56. AvatarServerURI = "http://mygridserver.com:8003"
  57. [PresenceService]
  58. ;
  59. ; Change this to your grid-wide presence server
  60. ;
  61. PresenceServerURI = "http://mygridserver.com:8003"
  62. [UserAccountService]
  63. ;
  64. ; Change this to your grid-wide user accounts server
  65. ;
  66. UserAccountServerURI = "http://mygridserver.com:8003"
  67. [GridUserService]
  68. ;
  69. ; Change this to your grid-wide user accounts server
  70. ;
  71. GridUserServerURI = "http://mygridserver.com:8003"
  72. [AuthenticationService]
  73. ;
  74. ; Change this to your grid-wide authentication server
  75. ;
  76. AuthenticationServerURI = "http://mygridserver.com:8003"
  77. [FriendsService]
  78. ;
  79. ; Change this to your grid-wide friends server
  80. ;
  81. FriendsServerURI = "http://mygridserver.com:8003"
  82. [HGInventoryAccessModule]
  83. ;
  84. ; === HG ONLY ===
  85. ; Change this to your server
  86. ; accessible from other grids
  87. ;
  88. ProfileServerURI = "http://mygridserver.com:8002/user"
  89. Gatekeeper = "http://mygridserver.com:8002"
  90. ;; If you want to protect your assets from being copied by foreign visitors
  91. ;; uncomment the next line. You may want to do this on sims that have licensed content.
  92. ; OutboundPermission = False
  93. [UserAgentService]
  94. ;
  95. ; === HG ONLY ===
  96. ; Change this to your user agent server (HG robust)
  97. ;
  98. UserAgentServerURI = "http://mygridserver.com:8002"
  99. [MapImageService]
  100. MapImageServerURI = "http://mygridserver.com:8003"
  101. [Modules]
  102. ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
  103. ;; Copy the config .example file into your own .ini file and change configs there
  104. ;; We recommend the use of the FlotsamAssetCache since this is most actively maintained.
  105. AssetCaching = "FlotsamAssetCache"
  106. Include-FlotsamCache = "config-include/FlotsamCache.ini"
  107. ;AssetCaching = "CenomeMemoryAssetCache"
  108. ;Include-CenomeCache = "config-include/CenomeCache.ini"
  109. ;AssetCaching = "GlynnTuckerAssetCache"
  110. ;; Optionally, the port for the LLProxyLoginModule module can be changed
  111. ;Setup_LLProxyLoginModule = "9090/"
  112. ;; Authorization is not on by default, as it depends on external php
  113. ;AuthorizationServices = "RemoteAuthorizationServicesConnector"