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.
|
2010-01-03 19:44:57 +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.
|
2009-07-07 16:21:51 +00:00
|
|
|
; *
|
|
|
|
; * These are the IN connectors the server uses, the in connectors
|
2010-01-03 19:44:57 +00:00
|
|
|
; * read this config file and load the needed service and database connectors
|
2009-07-07 16:21:51 +00:00
|
|
|
; *
|
2009-09-04 07:10:05 +00:00
|
|
|
; *
|
2009-07-07 16:21:51 +00:00
|
|
|
[Startup]
|
2010-01-11 03:19:34 +00:00
|
|
|
ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector,,OpenSim.Server.Handlers.dll:GridInfoServerInConnector,OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,OpenSim.Server.Handlers.dll:OpenIdServerConnector,OpenSim.Server.Handlers.dll:AvatarServiceConnector,OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,OpenSim.Server.Handlers.dll:PresenceServiceConnector,,OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
|
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]
|
2010-01-03 19:44:57 +00:00
|
|
|
port = 8003
|
2009-07-07 16:21:51 +00:00
|
|
|
|
2009-08-17 07:48:37 +00:00
|
|
|
; * The following are for the remote console
|
|
|
|
; * They have no effect for the local or basic console types
|
|
|
|
; * Leave commented to diable logins to the console
|
|
|
|
;ConsoleUser = Test
|
|
|
|
;ConsolePass = secret
|
|
|
|
|
2009-07-07 16:21:51 +00:00
|
|
|
; * 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]
|
2010-01-03 19:44:57 +00:00
|
|
|
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=opensim;User ID=opensim;Password=opensim123;"
|
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]
|
2010-01-03 19:44:57 +00:00
|
|
|
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=opensim;User ID=opensim;Password=opensim123;"
|
|
|
|
|
|
|
|
; * This is the new style grid service.
|
|
|
|
; * "Realm" is the table that is used for user lookup.
|
|
|
|
; * It defaults to "regions", which uses the legacy tables
|
|
|
|
; *
|
|
|
|
[GridService]
|
|
|
|
LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
|
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
|
|
|
|
Realm = "regions"
|
2009-07-07 20:19:40 +00:00
|
|
|
|
2009-08-04 03:40:22 +00:00
|
|
|
; * This is the configuration for the freeswitch server in grid mode
|
|
|
|
[FreeswitchService]
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
|
2009-09-04 07:10:05 +00:00
|
|
|
|
|
|
|
; * This is the new style authentication service. Currently, only MySQL
|
|
|
|
; * is implemented. "Realm" is the table that is used for user lookup.
|
|
|
|
; * By setting it to "users", you can use the old style users table
|
|
|
|
; * as an authentication source.
|
|
|
|
; *
|
|
|
|
[AuthenticationService]
|
2010-01-11 01:15:02 +00:00
|
|
|
; for the server connector
|
2010-01-11 01:19:40 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
2010-01-11 01:15:02 +00:00
|
|
|
; for the service
|
2010-01-03 19:44:57 +00:00
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
|
2009-09-04 07:10:05 +00:00
|
|
|
|
2010-01-11 01:15:02 +00:00
|
|
|
[OpenIdService]
|
|
|
|
; for the server connector
|
|
|
|
AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
2010-01-12 17:22:58 +00:00
|
|
|
UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
|
2010-01-11 01:15:02 +00:00
|
|
|
|
2009-09-06 03:44:08 +00:00
|
|
|
; * This is the new style user service.
|
|
|
|
; * "Realm" is the table that is used for user lookup.
|
|
|
|
; * It defaults to "users", which uses the legacy tables
|
|
|
|
; *
|
|
|
|
[UserAccountService]
|
2010-01-11 01:15:02 +00:00
|
|
|
; for the server connector
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
|
2010-01-11 01:15:02 +00:00
|
|
|
; for the service
|
2010-01-03 19:44:57 +00:00
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
|
|
|
|
; Realm = "useraccounts"
|
2010-01-13 18:15:14 +00:00
|
|
|
;; These are for creating new accounts by the service
|
|
|
|
AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
|
|
|
PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
|
|
|
|
GridService = "OpenSim.Services.GridService.dll:GridService"
|
|
|
|
InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
|
|
|
|
|
2009-09-06 03:44:08 +00:00
|
|
|
|
2010-01-03 19:44:57 +00:00
|
|
|
[PresenceService]
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the server connector
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the service
|
2010-01-03 19:44:57 +00:00
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
|
|
|
|
|
2010-01-12 17:22:58 +00:00
|
|
|
[AvatarService]
|
|
|
|
; for the server connector
|
|
|
|
LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
|
|
|
|
; for the service
|
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
|
|
|
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;"
|
|
|
|
|
2010-01-03 19:44:57 +00:00
|
|
|
[LibraryService]
|
|
|
|
LibraryName = "OpenSim Library"
|
|
|
|
DefaultLibrary = "./inventory/Libraries.xml"
|
|
|
|
|
|
|
|
[LoginService]
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the server connector
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the service
|
2010-01-03 19:44:57 +00:00
|
|
|
UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
|
|
|
|
AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
|
|
|
InventoryService = "OpenSim.Services.InventoryService.dll:InventoryService"
|
2010-01-12 17:22:58 +00:00
|
|
|
AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
|
2010-01-03 19:44:57 +00:00
|
|
|
PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
|
|
|
|
GridService = "OpenSim.Services.GridService.dll:GridService"
|
|
|
|
SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
|
|
|
|
LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
|
|
|
|
|
|
|
|
DefaultRegion = "OpenSim Test"
|
|
|
|
WelcomeMessage = "Welcome, Avatar!"
|