Advertisement
Guest User

Untitled

a guest
May 5th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.55 KB | None | 0 0
  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.  
  14. ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:InventoryServiceInConnector,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"
  15.  
  16. ; * This is common for all services, it's the network setup for the entire
  17. ; * server instance, if none if specified above
  18. ; *
  19. [Network]
  20. port = 8003
  21.  
  22. ; * The following are for the remote console
  23. ; * They have no effect for the local or basic console types
  24. ; * Leave commented to diable logins to the console
  25. ;ConsoleUser = Test
  26. ;ConsolePass = secret
  27. ;ConsolePort = 0
  28.  
  29. [DatabaseService]
  30. StorageProvider = "OpenSim.Data.MySQL.dll"
  31. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
  32.  
  33.  
  34. ; * As an example, the below configuration precisely mimicks the legacy
  35. ; * asset server. It is read by the asset IN connector (defined above)
  36. ; * and it then loads the OUT connector (a local database module). That,
  37. ; * in turn, reads the asset loader and database connection information
  38. ; *
  39. [AssetService]
  40. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  41. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  42. AssetLoaderArgs = "assets/AssetSets.xml"
  43.  
  44. ; * This configuration loads the inventory server modules. It duplicates
  45. ; * the function of the legacy inventory server
  46. ; *
  47. [InventoryService]
  48. LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
  49. SessionAuthentication = "false"
  50.  
  51. ; * This is the new style grid service.
  52. ; * "Realm" is the table that is used for user lookup.
  53. ; * It defaults to "regions", which uses the legacy tables
  54. ; *
  55. [GridService]
  56. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  57. Realm = "regions"
  58. ; AllowDuplicateNames = "True"
  59. ;; Next, we can specify properties of regions, including default and fallback regions
  60. ;; The syntax is: Region_<RegionName> = "<flags>"
  61. ;; or: Region_<RegionID> = "<flags>"
  62. ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
  63. ;; For example:
  64. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  65. ; (replace spaces with underscore)
  66.  
  67. ; * This is the configuration for the freeswitch server in grid mode
  68. [FreeswitchService]
  69. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  70.  
  71. ; * This is the new style authentication service. Currently, only MySQL
  72. ; * is implemented. "Realm" is the table that is used for user lookup.
  73. ; * By setting it to "users", you can use the old style users table
  74. ; * as an authentication source.
  75. ; *
  76. [AuthenticationService]
  77. ; for the server connector
  78. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  79.  
  80. [OpenIdService]
  81. ; for the server connector
  82. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  83. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  84.  
  85. ; * This is the new style user service.
  86. ; * "Realm" is the table that is used for user lookup.
  87. ; * It defaults to "users", which uses the legacy tables
  88. ; *
  89. [UserAccountService]
  90. ; for the server connector
  91. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  92. ; Realm = "useraccounts"
  93. ;; These are for creating new accounts by the service
  94. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  95. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  96. GridService = "OpenSim.Services.GridService.dll:GridService"
  97. InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
  98.  
  99. [PresenceService]
  100. ; for the server connector
  101. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  102.  
  103. [AvatarService]
  104. ; for the server connector
  105. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  106.  
  107. [LibraryService]
  108. LibraryName = "OpenSim Library"
  109. DefaultLibrary = "./inventory/Libraries.xml"
  110.  
  111. [LoginService]
  112. ; for the server connector
  113. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  114. ; for the service
  115. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  116. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  117. InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
  118. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  119. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  120. GridService = "OpenSim.Services.GridService.dll:GridService"
  121. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  122. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  123.  
  124. WelcomeMessage = "Welcome, Avatar!"
  125.  
  126. ; * This is the new style grid service.
  127. ; * "Realm" is the table that is used for user lookup.
  128. ; * It defaults to "regions", which uses the legacy tables
  129. ; *
  130. [GridService]
  131. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  132. StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  133. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;"
  134. Realm = "regions"
  135.  
  136. ; If true, duplicate region names are allowed on the grid. If false, no duplicate names are allowed
  137. ; Default is false
  138. ; AllowDuplicateNames = "True"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement