Robust.ini.example 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. ; * The startup section lists all the connectors to start up in this server
  2. ; * instance. This may be only one, or it may be the entire server suite.
  3. ; * Multiple connectors should be seaprated by commas.
  4. ; * The startup section lists all the connectors to start up in this server
  5. ; * instance. This may be only one, or it may be the entire server suite.
  6. ; * Multiple connectors should be seaprated by commas.
  7. ; *
  8. ; * These are the IN connectors the server uses, the in connectors
  9. ; * read this config file and load the needed service and database connectors
  10. ; *
  11. ; *
  12. [Startup]
  13. 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"
  14. ; * This is common for all services, it's the network setup for the entire
  15. ; * server instance, if none if specified above
  16. ; *
  17. [Network]
  18. port = 8003
  19. ; * The following are for the remote console
  20. ; * They have no effect for the local or basic console types
  21. ; * Leave commented to diable logins to the console
  22. ;ConsoleUser = Test
  23. ;ConsolePass = secret
  24. ;ConsolePort = 0
  25. [DatabaseService]
  26. StorageProvider = "OpenSim.Data.MySQL.dll"
  27. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  28. ; * As an example, the below configuration precisely mimicks the legacy
  29. ; * asset server. It is read by the asset IN connector (defined above)
  30. ; * and it then loads the OUT connector (a local database module). That,
  31. ; * in turn, reads the asset loader and database connection information
  32. ; *
  33. [AssetService]
  34. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  35. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  36. AssetLoaderArgs = "assets/AssetSets.xml"
  37. AllowRemoteDelete = "false"
  38. ; * This configuration loads the inventory server modules. It duplicates
  39. ; * the function of the legacy inventory server
  40. ; *
  41. [InventoryService]
  42. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  43. ; * This is the new style grid service.
  44. ; * "Realm" is the table that is used for user lookup.
  45. ; * It defaults to "regions", which uses the legacy tables
  46. ; *
  47. [GridService]
  48. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  49. Realm = "regions"
  50. ; AllowDuplicateNames = "True"
  51. ;; Next, we can specify properties of regions, including default and fallback regions
  52. ;; The syntax is: Region_<RegionName> = "<flags>"
  53. ;; or: Region_<RegionID> = "<flags>"
  54. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  55. ;; For example:
  56. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  57. ; (replace spaces with underscore)
  58. ; * This is the configuration for the freeswitch server in grid mode
  59. [FreeswitchService]
  60. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  61. ; * This is the new style authentication service. Currently, only MySQL
  62. ; * is implemented. "Realm" is the table that is used for user lookup.
  63. ; * By setting it to "users", you can use the old style users table
  64. ; * as an authentication source.
  65. ; *
  66. [AuthenticationService]
  67. ; for the server connector
  68. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  69. [OpenIdService]
  70. ; for the server connector
  71. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  72. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  73. ; * This is the new style user service.
  74. ; * "Realm" is the table that is used for user lookup.
  75. ; * It defaults to "users", which uses the legacy tables
  76. ; *
  77. [UserAccountService]
  78. ; for the server connector
  79. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  80. ; Realm = "useraccounts"
  81. ;; These are for creating new accounts by the service
  82. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  83. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  84. GridService = "OpenSim.Services.GridService.dll:GridService"
  85. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  86. [GridUserService]
  87. ; for the server connector
  88. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  89. [PresenceService]
  90. ; for the server connector
  91. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  92. [AvatarService]
  93. ; for the server connector
  94. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  95. [FriendsService]
  96. ; for the server connector
  97. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  98. [LibraryService]
  99. LibraryName = "OpenSim Library"
  100. DefaultLibrary = "./inventory/Libraries.xml"
  101. [LoginService]
  102. ; for the server connector
  103. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  104. ; for the service
  105. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  106. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  107. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  108. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  109. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  110. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  111. GridService = "OpenSim.Services.GridService.dll:GridService"
  112. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  113. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  114. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  115. WelcomeMessage = "Welcome, Avatar!"
  116. AllowRemoteSetLoginLevel = "false"
  117. ; For snowglobe's web map
  118. ; MapTileURL = "";
  119. [GridInfoService]
  120. ; These settings are used to return information on a get_grid_info call.
  121. ; Client launcher scripts and third-party clients make use of this to
  122. ; autoconfigure the client and to provide a nice user experience. If you
  123. ; want to facilitate that, you should configure the settings here according
  124. ; to your grid or standalone setup.
  125. ;
  126. ; See http://opensimulator.org/wiki/GridInfo
  127. ; login uri: for grid this is the login server URI
  128. login = http://127.0.0.1:9000/
  129. ; long grid name: the long name of your grid
  130. gridname = "the lost continent of hippo"
  131. ; short grid name: the short name of your grid
  132. gridnick = "hippogrid"
  133. ; login page: optional: if it exists it will be used to tell the client to use
  134. ; this as splash page
  135. ; currently unused
  136. ;welcome = http://127.0.0.1/welcome
  137. ; helper uri: optional: if it exists if will be used to tell the client to use
  138. ; this for all economy related things
  139. ; currently unused
  140. ;economy = http://127.0.0.1:9000/
  141. ; web page of grid: optional: page providing further information about your grid
  142. ; currently unused
  143. ;about = http://127.0.0.1/about/
  144. ; account creation: optional: page providing further information about obtaining
  145. ; a user account on your grid
  146. ; currently unused
  147. ;register = http://127.0.0.1/register
  148. ; help: optional: page providing further assistance for users of your grid
  149. ; currently unused
  150. ;help = http://127.0.0.1/help
  151. ; password help: optional: page providing password assistance for users of your grid
  152. ; currently unused
  153. ;password = http://127.0.0.1/password