Robust.HG.ini.example 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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,8003/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=*****;Old Guids=true;"
  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. ;; Next, we can specify properties of regions, including default and fallback regions
  50. ;; The syntax is: Region_<RegionName> = "<flags>"
  51. ;; or: Region_<RegionID> = "<flags>"
  52. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  53. ;; For example:
  54. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  55. ; (replace spaces with underscore)
  56. ; * This is the configuration for the freeswitch server in grid mode
  57. [FreeswitchService]
  58. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  59. ; * This is the new style authentication service. Currently, only MySQL
  60. ; * is implemented. "Realm" is the table that is used for user lookup.
  61. ; * By setting it to "users", you can use the old style users table
  62. ; * as an authentication source.
  63. ; *
  64. [AuthenticationService]
  65. ; for the server connector
  66. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  67. [OpenIdService]
  68. ; for the server connector
  69. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  70. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  71. ; * This is the new style user service.
  72. ; * "Realm" is the table that is used for user lookup.
  73. ; * It defaults to "users", which uses the legacy tables
  74. ; *
  75. [UserAccountService]
  76. ; for the server connector
  77. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  78. ;; These are for creating new accounts by the service
  79. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  80. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  81. GridService = "OpenSim.Services.GridService.dll:GridService"
  82. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  83. [GridUserService]
  84. ; for the server connector
  85. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  86. [PresenceService]
  87. ; for the server connector
  88. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  89. [AvatarService]
  90. ; for the server connector
  91. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  92. [FriendsService]
  93. ; for the server connector
  94. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  95. [LibraryService]
  96. LibraryName = "OpenSim Library"
  97. DefaultLibrary = "./inventory/Libraries.xml"
  98. [LoginService]
  99. ; for the server connector
  100. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  101. ; for the service
  102. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  103. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  104. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  105. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  106. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  107. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  108. GridService = "OpenSim.Services.GridService.dll:GridService"
  109. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  110. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  111. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  112. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  113. WelcomeMessage = "Welcome, Avatar!"
  114. AllowRemoteSetLoginLevel = "false"
  115. ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs)
  116. ; CHANGE THIS
  117. HomeURI = "http://127.0.0.1:8002"
  118. GatekeeperURI = "http://127.0.0.1:8002"
  119. InventoryServerURI = "http://127.0.0.1:8002"
  120. AssetServerURI = "http://127.0.0.1:8002"
  121. [GridInfoService]
  122. ; These settings are used to return information on a get_grid_info call.
  123. ; Client launcher scripts and third-party clients make use of this to
  124. ; autoconfigure the client and to provide a nice user experience. If you
  125. ; want to facilitate that, you should configure the settings here according
  126. ; to your grid or standalone setup.
  127. ;
  128. ; See http://opensimulator.org/wiki/GridInfo
  129. ; login uri: for grid this is the login server URI
  130. login = http://127.0.0.1:9000/
  131. ; long grid name: the long name of your grid
  132. gridname = "the lost continent of hippo"
  133. ; short grid name: the short name of your grid
  134. gridnick = "hippogrid"
  135. ; login page: optional: if it exists it will be used to tell the client to use
  136. ; this as splash page
  137. ; currently unused
  138. ;welcome = http://127.0.0.1/welcome
  139. ; helper uri: optional: if it exists if will be used to tell the client to use
  140. ; this for all economy related things
  141. ; currently unused
  142. ;economy = http://127.0.0.1:9000/
  143. ; web page of grid: optional: page providing further information about your grid
  144. ; currently unused
  145. ;about = http://127.0.0.1/about/
  146. ; account creation: optional: page providing further information about obtaining
  147. ; a user account on your grid
  148. ; currently unused
  149. ;register = http://127.0.0.1/register
  150. ; help: optional: page providing further assistance for users of your grid
  151. ; currently unused
  152. ;help = http://127.0.0.1/help
  153. ; password help: optional: page providing password assistance for users of your grid
  154. ; currently unused
  155. ;password = http://127.0.0.1/password
  156. [GatekeeperService]
  157. LocalServiceModule = "OpenSim.Services.HypergridService.dll:GatekeeperService"
  158. ;; for the service
  159. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  160. UserAgentService = "OpenSim.Services.HypergridService.dll:UserAgentService"
  161. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  162. GridService = "OpenSim.Services.GridService.dll:GridService"
  163. AuthenticationService = "OpenSim.Services.Connectors.dll:AuthenticationServicesConnector"
  164. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  165. ; how does the outside world reach me? This acts as public key too.
  166. ; CHANGE THIS
  167. ExternalName = "http://127.0.0.1:8002"
  168. ; Does this grid allow incoming links to any region in it?
  169. ; If false, HG TPs happen only to the Default regions specified in [GridService] section
  170. AllowTeleportsToAnyRegion = true
  171. [UserAgentService]
  172. LocalServiceModule = "OpenSim.Services.HypergridService.dll:UserAgentService"
  173. ;; for the service
  174. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  175. GridService = "OpenSim.Services.GridService.dll:GridService"
  176. ;; The interface that local users get when they are in other grids.
  177. ;; This restricts the inventory operations while in other grids.
  178. ;; Still not completely safe, especially if users perform inventory operations
  179. ;; while in those grids. The more the user accesses his/her inventory, the more
  180. ;; those simulators will know about the user's inventory.
  181. [HGInventoryService]
  182. ; For the InventoryServiceInConnector
  183. LocalServiceModule = "OpenSim.Services.InventoryService.dll:HGInventoryService"