2009-07-07 16:21:51 +00:00
|
|
|
; * The startup section lists all the connectors to start up in this server
|
|
|
|
; * instance. This may be only one, or it may be the entire server suite.
|
|
|
|
; * Multiple connectors should be seaprated by commas.
|
|
|
|
; *
|
|
|
|
; * These are the IN connectors the server uses, the in connectors
|
2009-07-07 20:19:40 +00:00
|
|
|
; * read this config file and load the needed OUT and database connectors
|
2009-07-07 16:21:51 +00:00
|
|
|
; *
|
|
|
|
[Startup]
|
2009-08-04 03:40:22 +00:00
|
|
|
ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServiceConnector"
|
2009-07-07 16:21:51 +00:00
|
|
|
|
|
|
|
; * This is common for all services, it's the network setup for the entire
|
|
|
|
; * server instance
|
|
|
|
; *
|
|
|
|
[Network]
|
|
|
|
port = 8003
|
|
|
|
|
|
|
|
; * As an example, the below configuration precisely mimicks the legacy
|
|
|
|
; * asset server. It is read by the asset IN connector (defined above)
|
|
|
|
; * and it then loads the OUT connector (a local database module). That,
|
|
|
|
; * in turn, reads the asset loader and database connection information
|
|
|
|
; *
|
|
|
|
[AssetService]
|
|
|
|
LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
|
|
|
|
DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
|
|
|
|
AssetLoaderArgs = "assets/AssetSets.xml"
|
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
|
2009-07-07 20:19:40 +00:00
|
|
|
|
|
|
|
; * This configuration loads the inventory server modules. It duplicates
|
|
|
|
; * the function of the legacy inventory server
|
|
|
|
; *
|
|
|
|
[InventoryService]
|
|
|
|
LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService"
|
|
|
|
UserServerURI = "http://127.0.0.1:8002"
|
|
|
|
SessionAuthentication = "false"
|
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
|
|
|
|
|
2009-08-04 03:40:22 +00:00
|
|
|
; * This is the configuration for the freeswitch server in grid mode
|
|
|
|
[FreeswitchService]
|
2009-08-04 03:47:47 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
|