StandaloneCommon.ini.example 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. [AssetService]
  16. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  17. AssetLoaderArgs = "assets/AssetSets.xml"
  18. [HGInventoryService]
  19. ProfileServerURI = "http://127.0.0.1:9000/profiles"
  20. [HGAssetService]
  21. ProfileServerURI = "http://127.0.0.1:9000/profiles"
  22. [HGInventoryAccessModule]
  23. ProfileServerURI = "http://127.0.0.1:9000/profiles"
  24. ;; If you want to protect your assets from being copied by foreign visitors
  25. ;; uncomment the next line. You may want to do this on sims that have licensed content.
  26. ; OutboundPermission = False
  27. [Modules]
  28. ;; Choose 0 or 1 cache modules, and the corresponding config file, if it exists.
  29. ;; Copy the config .example file into your own .ini file and change configs there
  30. ;AssetCaching = "GlynnTuckerAssetCache"
  31. ;AssetCaching = "FlotsamAssetCache"
  32. ;Include-FlotsamCache = "config-include/FlotsamCache.ini"
  33. AssetCaching = "CenomeMemoryAssetCache"
  34. Include-CenomeCache = "config-include/CenomeCache.ini"
  35. ;; Authorization is not on by default, as it depends on external php
  36. ;AuthorizationServices = "LocalAuthorizationServicesConnector"
  37. [GridService]
  38. ;; For in-memory region storage (default)
  39. StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
  40. ;;--- For MySql region storage (alternative)
  41. ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  42. ;; With hypergrid, perform distance check for the creation of a linked region
  43. ; Check4096 = true
  44. ;; Directory for map tile images of remote regions
  45. ; MapTileDirectory = "./maptiles"
  46. ;; Next, we can specify properties of regions, including default and fallback regions
  47. ;; The syntax is: Region_<RegioName> = "<flags>"
  48. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut
  49. ;; For example:
  50. Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  51. ; === HG ONLY ===
  52. ;; change this to the address of your simulator
  53. Gatekeeper="http://127.0.0.1:9000"
  54. [LibraryModule]
  55. ; Set this if you want to change the name of the OpenSim Library
  56. ;LibraryName = "My World's Library"
  57. [LoginService]
  58. WelcomeMessage = "Welcome, Avatar!"
  59. GatekeeperURI = "http://127.0.0.1:9000"
  60. SRV_HomeURI = "http://127.0.0.1:9000"
  61. SRV_InventoryServerURI = "http://127.0.0.1:9000"
  62. SRV_AssetServerURI = "http://127.0.0.1:9000"
  63. SRV_ProfileServerURI = "http://127.0.0.1:9000"
  64. ;; Regular expressions for controlling which client versions are accepted/denied.
  65. ;; An empty string means nothing is checked.
  66. ;;
  67. ;; Example 1: allow only these 3 types of clients (any version of them)
  68. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  69. ;;
  70. ;; Example 2: allow all clients except these
  71. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  72. ;;
  73. ;; Note that these are regular expressions, so every character counts.
  74. ;; Also note that this is very weak security and should not be trusted as a reliable means
  75. ;; for keeping bad clients out; modified clients can fake their identifiers.
  76. ;;
  77. ;;
  78. ;AllowedClients = ""
  79. ;DeniedClients = ""
  80. [GatekeeperService]
  81. ExternalName = "http://127.0.0.1:9000"
  82. ; Does this grid allow incoming links to any region in it?
  83. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  84. AllowTeleportsToAnyRegion = true
  85. ;; Regular expressions for controlling which client versions are accepted/denied.
  86. ;; An empty string means nothing is checked.
  87. ;;
  88. ;; Example 1: allow only these 3 types of clients (any version of them)
  89. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  90. ;;
  91. ;; Example 2: allow all clients except these
  92. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  93. ;;
  94. ;; Note that these are regular expressions, so every character counts.
  95. ;; Also note that this is very weak security and should not be trusted as a reliable means
  96. ;; for keeping bad clients out; modified clients can fake their identifiers.
  97. ;;
  98. ;;
  99. ;AllowedClients = ""
  100. ;DeniedClients = ""
  101. [GridInfoService]
  102. ; These settings are used to return information on a get_grid_info call.
  103. ; Client launcher scripts and third-party clients make use of this to
  104. ; autoconfigure the client and to provide a nice user experience. If you
  105. ; want to facilitate that, you should configure the settings here according
  106. ; to your grid or standalone setup.
  107. ;
  108. ; See http://opensimulator.org/wiki/GridInfo
  109. ; login uri: for grid this is the login server URI
  110. login = http://127.0.0.1:9000/
  111. ; long grid name: the long name of your grid
  112. gridname = "the lost continent of hippo"
  113. ; short grid name: the short name of your grid
  114. gridnick = "hippogrid"
  115. ; login page: optional: if it exists it will be used to tell the client to use
  116. ; this as splash page
  117. ; currently unused
  118. ;welcome = http://127.0.0.1/welcome
  119. ; helper uri: optional: if it exists if will be used to tell the client to use
  120. ; this for all economy related things
  121. ; currently unused
  122. ;economy = http://127.0.0.1:9000/
  123. ; web page of grid: optional: page providing further information about your grid
  124. ; currently unused
  125. ;about = http://127.0.0.1/about/
  126. ; account creation: optional: page providing further information about obtaining
  127. ; a user account on your grid
  128. ; currently unused
  129. ;register = http://127.0.0.1/register
  130. ; help: optional: page providing further assistance for users of your grid
  131. ; currently unused
  132. ;help = http://127.0.0.1/help
  133. ; password help: optional: page providing password assistance for users of your grid
  134. ; currently unused
  135. ;password = http://127.0.0.1/password