diff options
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index ebd2d2c..3843123 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example | |||
@@ -3,10 +3,10 @@ | |||
3 | ; * Multiple connectors should be seaprated by commas. | 3 | ; * Multiple connectors should be seaprated by commas. |
4 | ; * | 4 | ; * |
5 | ; * These are the IN connectors the server uses, the in connectors | 5 | ; * These are the IN connectors the server uses, the in connectors |
6 | ; * read tis config file and load the needed OUT and database connectors | 6 | ; * read this config file and load the needed OUT and database connectors |
7 | ; * | 7 | ; * |
8 | [Startup] | 8 | [Startup] |
9 | ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector" | 9 | ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector" |
10 | 10 | ||
11 | ; * This is common for all services, it's the network setup for the entire | 11 | ; * This is common for all services, it's the network setup for the entire |
12 | ; * server instance | 12 | ; * server instance |
@@ -25,3 +25,14 @@ DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" | |||
25 | AssetLoaderArgs = "assets/AssetSets.xml" | 25 | AssetLoaderArgs = "assets/AssetSets.xml" |
26 | StorageProvider = "OpenSim.Data.MySQL.dll" | 26 | StorageProvider = "OpenSim.Data.MySQL.dll" |
27 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | 27 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" |
28 | |||
29 | ; * This configuration loads the inventory server modules. It duplicates | ||
30 | ; * the function of the legacy inventory server | ||
31 | ; * | ||
32 | [InventoryService] | ||
33 | LocalServiceModule = "OpenSim.Services.InventoryService.dll:InventoryService" | ||
34 | UserServerURI = "http://127.0.0.1:8002" | ||
35 | SessionAuthentication = "false" | ||
36 | StorageProvider = "OpenSim.Data.MySQL.dll" | ||
37 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | ||
38 | |||