diff options
author | Diva Canto | 2009-09-28 06:08:35 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-28 06:08:35 -0700 |
commit | de481139626638a9c1becc63bf86d0ec12215163 (patch) | |
tree | 190f291ea861e8731e7e3c04163c7f615ae1ad80 | |
parent | Deleted some files that aren't being used anymore. (diff) | |
download | opensim-SC_OLD-de481139626638a9c1becc63bf86d0ec12215163.zip opensim-SC_OLD-de481139626638a9c1becc63bf86d0ec12215163.tar.gz opensim-SC_OLD-de481139626638a9c1becc63bf86d0ec12215163.tar.bz2 opensim-SC_OLD-de481139626638a9c1becc63bf86d0ec12215163.tar.xz |
Added GridService section to 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" | ||