Robust.HG.ini.example 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. ;; Configurations for enabling HG1.5
  2. ;;
  3. ;; Run
  4. ;; $ Robust.exe -inifile Robust.HG.ini
  5. ;; HG1.5 handlers are: OpenSim.Server.Handlers.dll:GatekeeperService
  6. ;; OpenSim.Server.Handlers.dll:UserAgentService
  7. ;; Additional OpenSim.Server.Handlers.dll:AssetServiceConnector and
  8. ;; OpenSim.Server.Handlers.dll:XInventoryInConnector
  9. ;; are started in port 8002, outside the firewall
  10. ;;
  11. [Startup]
  12. ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector,8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector,8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector,HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  13. ; * This is common for all services, it's the network setup for the entire
  14. ; * server instance, if none if specified above
  15. ; *
  16. [Network]
  17. port = 8003
  18. ; * The following are for the remote console
  19. ; * They have no effect for the local or basic console types
  20. ; * Leave commented to diable logins to the console
  21. ;ConsoleUser = Test
  22. ;ConsolePass = secret
  23. ;ConsolePort = 0
  24. [DatabaseService]
  25. StorageProvider = "OpenSim.Data.MySQL.dll"
  26. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;"
  27. ; * As an example, the below configuration precisely mimicks the legacy
  28. ; * asset server. It is read by the asset IN connector (defined above)
  29. ; * and it then loads the OUT connector (a local database module). That,
  30. ; * in turn, reads the asset loader and database connection information
  31. ; *
  32. [AssetService]
  33. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  34. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  35. AssetLoaderArgs = "assets/AssetSets.xml"
  36. ; * This configuration loads the inventory server modules. It duplicates
  37. ; * the function of the legacy inventory server
  38. ; *
  39. [InventoryService]
  40. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  41. ; * This is the new style grid service.
  42. ; * "Realm" is the table that is used for user lookup.
  43. ; * It defaults to "regions", which uses the legacy tables
  44. ; *
  45. [GridService]
  46. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  47. Realm = "regions"
  48. ; AllowDuplicateNames = "True"
  49. ; Check4096 = "False"
  50. ;; Next, we can specify properties of regions, including default and fallback regions
  51. ;; The syntax is: Region_<RegionName> = "<flags>"
  52. ;; or: Region_<RegionID> = "<flags>"
  53. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  54. ;; For example:
  55. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  56. ; (replace spaces with underscore)
  57. ; * This is the configuration for the freeswitch server in grid mode
  58. [FreeswitchService]
  59. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  60. ; * This is the new style authentication service. Currently, only MySQL
  61. ; * is implemented. "Realm" is the table that is used for user lookup.
  62. ; * By setting it to "users", you can use the old style users table
  63. ; * as an authentication source.
  64. ; *
  65. [AuthenticationService]
  66. ; for the server connector
  67. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  68. [OpenIdService]
  69. ; for the server connector
  70. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  71. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  72. ; * This is the new style user service.
  73. ; * "Realm" is the table that is used for user lookup.
  74. ; * It defaults to "users", which uses the legacy tables
  75. ; *
  76. [UserAccountService]
  77. ; for the server connector
  78. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  79. ;; These are for creating new accounts by the service
  80. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  81. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  82. GridService = "OpenSim.Services.GridService.dll:GridService"
  83. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  84. [GridUserService]
  85. ; for the server connector
  86. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  87. [PresenceService]
  88. ; for the server connector
  89. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  90. [AvatarService]
  91. ; for the server connector
  92. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  93. [FriendsService]
  94. ; for the server connector
  95. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  96. [LibraryService]
  97. LibraryName = "OpenSim Library"
  98. DefaultLibrary = "./inventory/Libraries.xml"
  99. [LoginService]
  100. ; for the server connector
  101. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  102. ; for the service
  103. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  104. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  105. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  106. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  107. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  108. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  109. GridService = "OpenSim.Services.GridService.dll:GridService"
  110. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  111. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  112. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  113. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  114. WelcomeMessage = "Welcome, Avatar!"
  115. AllowRemoteSetLoginLevel = "false"
  116. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  117. ; CHANGE THIS
  118. HomeURI = "http://127.0.0.1:8002"
  119. GatekeeperURI = "http://127.0.0.1:8002"
  120. InventoryServerURI = "http://127.0.0.1:8002"
  121. AssetServerURI = "http://127.0.0.1:8002"
  122. [GridInfoService]
  123. ; These settings are used to return information on a get_grid_info call.
  124. ; Client launcher scripts and third-party clients make use of this to
  125. ; autoconfigure the client and to provide a nice user experience. If you
  126. ; want to facilitate that, you should configure the settings here according
  127. ; to your grid or standalone setup.
  128. ;
  129. ; See http://opensimulator.org/wiki/GridInfo
  130. ; login uri: for grid this is the login server URI
  131. login = http://127.0.0.1:9000/
  132. ; long grid name: the long name of your grid
  133. gridname = "the lost continent of hippo"
  134. ; short grid name: the short name of your grid
  135. gridnick = "hippogrid"
  136. ; login page: optional: if it exists it will be used to tell the client to use
  137. ; this as splash page
  138. ; currently unused
  139. ;welcome = http://127.0.0.1/welcome
  140. ; helper uri: optional: if it exists if will be used to tell the client to use
  141. ; this for all economy related things
  142. ; currently unused
  143. ;economy = http://127.0.0.1:9000/
  144. ; web page of grid: optional: page providing further information about your grid
  145. ; currently unused
  146. ;about = http://127.0.0.1/about/
  147. ; account creation: optional: page providing further information about obtaining
  148. ; a user account on your grid
  149. ; currently unused
  150. ;register = http://127.0.0.1/register
  151. ; help: optional: page providing further assistance for users of your grid
  152. ; currently unused
  153. ;help = http://127.0.0.1/help
  154. ; password help: optional: page providing password assistance for users of your grid
  155. ; currently unused
  156. ;password = http://127.0.0.1/password
  157. [GatekeeperService]
  158. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  159. ;; for the service
  160. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  161. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  162. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  163. GridService = "OpenSim.Services.GridService.dll:GridService"
  164. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  165. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  166. ; how does the outside world reach me? This acts as public key too.
  167. ; CHANGE THIS
  168. ExternalName = "http://127.0.0.1:8002"
  169. ; Does this grid allow incoming links to any region in it?
  170. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  171. AllowTeleportsToAnyRegion = true
  172. [UserAgentService]
  173. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  174. ;; for the service
  175. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  176. GridService = "OpenSim.Services.GridService.dll:GridService"
  177. GatekeeperService = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  178. ;; The interface that local users get when they are in other grids.
  179. ;; This restricts the inventory operations while in other grids.
  180. ;; Still not completely safe, especially if users perform inventory operations
  181. ;; while in those grids. The more the user accesses his/her inventory, the more
  182. ;; those simulators will know about the user's inventory.
  183. [HGInventoryService]
  184. ; For the InventoryServiceInConnector
  185. LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"