OpenSim.Server.ini.example 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. [Startup]
  9. ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  10. ; * This is common for all services, it's the network setup for the entire
  11. ; * server instance
  12. ; *
  13. [Network]
  14. port = 8003
  15. ; * The following are for the remote console
  16. ; * They have no effect for the local or basic console types
  17. ; * Leave commented to diable logins to the console
  18. ;ConsoleUser = Test
  19. ;ConsolePass = secret
  20. ; * As an example, the below configuration precisely mimicks the legacy
  21. ; * asset server. It is read by the asset IN connector (defined above)
  22. ; * and it then loads the OUT connector (a local database module). That,
  23. ; * in turn, reads the asset loader and database connection information
  24. ; *
  25. [AssetService]
  26. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  27. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  28. AssetLoaderArgs = "assets/AssetSets.xml"
  29. StorageProvider = "OpenSim.Data.MySQL.dll"
  30. ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
  31. ; * This configuration loads the inventory server modules. It duplicates
  32. ; * the function of the legacy inventory server
  33. ; *
  34. [InventoryService]
  35. LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
  36. UserServerURI = "http://127.0.0.1:8002"
  37. SessionAuthentication = "false"
  38. StorageProvider = "OpenSim.Data.MySQL.dll"
  39. ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
  40. ; * This is the configuration for the freeswitch server in grid mode
  41. [FreeswitchService]
  42. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"