diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index aab0566..545d6ce 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example | |||
@@ -5,6 +5,9 @@ | |||
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 this 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 | ; * Add "OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" to | ||
9 | ; * enable the experimental authentication service | ||
10 | ; * | ||
8 | [Startup] | 11 | [Startup] |
9 | 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" |
10 | 13 | ||
@@ -45,3 +48,15 @@ ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=gr | |||
45 | ; * This is the configuration for the freeswitch server in grid mode | 48 | ; * This is the configuration for the freeswitch server in grid mode |
46 | [FreeswitchService] | 49 | [FreeswitchService] |
47 | LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" | 50 | LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" |
51 | |||
52 | ; * This is the new style authentication service. Currently, only MySQL | ||
53 | ; * is implemented. "Realm" is the table that is used for user lookup. | ||
54 | ; * By setting it to "users", you can use the old style users table | ||
55 | ; * as an authentication source. | ||
56 | ; * | ||
57 | [AuthenticationService] | ||
58 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
59 | StorageProvider = "OpenSim.Data.MySQL.dll" | ||
60 | ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;" | ||
61 | ; Realm = "auth" | ||
62 | |||