OpenSim.Server.ini.example 3.5 KB

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