OpenSim.Server.ini.example 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. ; *
  5. ; * These are the IN connectors the server uses, the in connectors
  6. ; * read this config file and load the needed OUT and database connectors
  7. ; *
  8. ; * Add "OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" to
  9. ; * enable the experimental authentication service
  10. ; *
  11. [Startup]
  12. ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector"
  13. ; * This is common for all services, it's the network setup for the entire
  14. ; * server instance
  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. ; * As an example, the below configuration precisely mimicks the legacy
  25. ; * asset server. It is read by the asset IN connector (defined above)
  26. ; * and it then loads the OUT connector (a local database module). That,
  27. ; * in turn, reads the asset loader and database connection information
  28. ; *
  29. [AssetService]
  30. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  31. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  32. AssetLoaderArgs = "assets/AssetSets.xml"
  33. StorageProvider = "OpenSim.Data.MySQL.dll"
  34. ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
  35. ; * This configuration loads the inventory server modules. It duplicates
  36. ; * the function of the legacy inventory server
  37. ; *
  38. [InventoryService]
  39. LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
  40. UserServerURI = "http://127.0.0.1:8002"
  41. SessionAuthentication = "false"
  42. StorageProvider = "OpenSim.Data.MySQL.dll"
  43. ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
  44. ; * This is the configuration for the freeswitch server in grid mode
  45. [FreeswitchService]
  46. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  47. ; * This is the new style authentication service. Currently, only MySQL
  48. ; * is implemented. "Realm" is the table that is used for user lookup.
  49. ; * By setting it to "users", you can use the old style users table
  50. ; * as an authentication source.
  51. ; *
  52. [AuthenticationService]
  53. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  54. StorageProvider = "OpenSim.Data.MySQL.dll"
  55. ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
  56. ; Realm = "users"
  57. ; * This is the new style user service.
  58. ; * "Realm" is the table that is used for user lookup.
  59. ; * It defaults to "users", which uses the legacy tables
  60. ; *
  61. [UserAccountService]
  62. AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService"
  63. StorageProvider = "OpenSim.Data.MySQL.dll"
  64. ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
  65. ; Realm = "users"
  66. ; * This is the new style grid service.
  67. ; * "Realm" is the table that is used for user lookup.
  68. ; * It defaults to "regions", which uses the legacy tables
  69. ; *
  70. [GridService]
  71. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  72. StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  73. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;"
  74. Realm = "regions"