OpenSim.GridServer.ini.example 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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. ; *
  9. [Startup]
  10. ServiceConnectors = "OpenSim.Server.Handlers.dll:GridServiceConnector"
  11. ; * This is common for all services, it's the network setup for the entire
  12. ; * server instance
  13. ; *
  14. [Network]
  15. port = 8002
  16. ; * The following are for the remote console
  17. ; * They have no effect for the local or basic console types
  18. ; * Leave commented to diable logins to the console
  19. ;ConsoleUser = Test
  20. ;ConsolePass = secret
  21. ; * As an example, the below configuration precisely mimicks the legacy
  22. ; * asset server. It is read by the asset IN connector (defined above)
  23. ; * and it then loads the OUT connector (a local database module). That,
  24. ; * in turn, reads the asset loader and database connection information
  25. ; *
  26. [GridService]
  27. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  28. StorageProvider = "OpenSim.Data.Null.dll:NullRegionData"
  29. ;StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
  30. ;ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=***;"
  31. Realm = "regions"