diff options
author | Diva Canto | 2010-01-10 17:15:02 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-10 17:15:02 -0800 |
commit | b0bbe861cd0f3eb06de73a371ab961428c549c69 (patch) | |
tree | 67110bb96bf3dfd6b0236f75761db5327adc515e /bin/OpenSim.Server.ini.example | |
parent | Forgot to remove 'using' (diff) | |
download | opensim-SC_OLD-b0bbe861cd0f3eb06de73a371ab961428c549c69.zip opensim-SC_OLD-b0bbe861cd0f3eb06de73a371ab961428c549c69.tar.gz opensim-SC_OLD-b0bbe861cd0f3eb06de73a371ab961428c549c69.tar.bz2 opensim-SC_OLD-b0bbe861cd0f3eb06de73a371ab961428c549c69.tar.xz |
Moved OpenId authentication from user server to Server.Handlers.Authentication.
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.Server.ini.example | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bin/OpenSim.Server.ini.example b/bin/OpenSim.Server.ini.example index b93bbd6..c76ac4d 100644 --- a/bin/OpenSim.Server.ini.example +++ b/bin/OpenSim.Server.ini.example | |||
@@ -10,7 +10,7 @@ | |||
10 | ; * | 10 | ; * |
11 | ; * | 11 | ; * |
12 | [Startup] | 12 | [Startup] |
13 | 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:AuthenticationServiceConnector,OpenSim.Server.Handlers.dll:AvatarServiceConnector,OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,OpenSim.Server.Handlers.dll:PresenceServiceConnector,,OpenSim.Server.Handlers.dll:UserAccountServiceConnector" | 13 | 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: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" |
14 | 14 | ||
15 | ; * This is common for all services, it's the network setup for the entire | 15 | ; * This is common for all services, it's the network setup for the entire |
16 | ; * server instance | 16 | ; * server instance |
@@ -66,17 +66,25 @@ ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.S | |||
66 | ; * as an authentication source. | 66 | ; * as an authentication source. |
67 | ; * | 67 | ; * |
68 | [AuthenticationService] | 68 | [AuthenticationService] |
69 | ; for the server connector | ||
69 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | 70 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" |
71 | ; for the service | ||
70 | StorageProvider = "OpenSim.Data.MySQL.dll" | 72 | StorageProvider = "OpenSim.Data.MySQL.dll" |
71 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" | 73 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" |
72 | 74 | ||
75 | [OpenIdService] | ||
76 | ; for the server connector | ||
77 | AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" | ||
78 | UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
79 | |||
73 | ; * This is the new style user service. | 80 | ; * This is the new style user service. |
74 | ; * "Realm" is the table that is used for user lookup. | 81 | ; * "Realm" is the table that is used for user lookup. |
75 | ; * It defaults to "users", which uses the legacy tables | 82 | ; * It defaults to "users", which uses the legacy tables |
76 | ; * | 83 | ; * |
77 | [UserAccountService] | 84 | [UserAccountService] |
78 | AuthenticationServiceModule = "OpenSim.Services.UserService.dll:UserAccountService" | 85 | ; for the server connector |
79 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 86 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
87 | ; for the service | ||
80 | StorageProvider = "OpenSim.Data.MySQL.dll" | 88 | StorageProvider = "OpenSim.Data.MySQL.dll" |
81 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" | 89 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" |
82 | ; Realm = "useraccounts" | 90 | ; Realm = "useraccounts" |