diff options
Diffstat (limited to 'bin/OpenSim.Server.ini.example')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index 5696f07..635ba1e 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example | |||
@@ -9,7 +9,7 @@ | |||
9 | ; * enable the experimental authentication service | 9 | ; * enable the experimental authentication service |
10 | ; * | 10 | ; * |
11 | [Startup] | 11 | [Startup] |
12 | ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector" | 12 | ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector,OpenSim.Server.Handlers.dll:GridServiceConnector" |
13 | 13 | ||
14 | ; * This is common for all services, it's the network setup for the entire | 14 | ; * This is common for all services, it's the network setup for the entire |
15 | ; * server instance | 15 | ; * server instance |
@@ -70,3 +70,12 @@ StorageProvider = "OpenSim.Data.MySQL.dll" | |||
70 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | 70 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" |
71 | ; Realm = "users" | 71 | ; Realm = "users" |
72 | 72 | ||
73 | ; * This is the new style grid service. | ||
74 | ; * "Realm" is the table that is used for user lookup. | ||
75 | ; * It defaults to "regions", which uses the legacy tables | ||
76 | ; * | ||
77 | [GridService] | ||
78 | LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" | ||
79 | StorageProvider = "OpenSim.Data.MySQL.dll:MySqlRegionData" | ||
80 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=grid;" | ||
81 | Realm = "regions" | ||