aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.Server.ini.example
diff options
context:
space:
mode:
authorMelanie2009-09-04 08:10:05 +0100
committerMelanie2009-09-04 08:10:05 +0100
commit67f803c919324f49e21279faa43c9578b625529e (patch)
tree4924c2931e34c2a19645ed7d918da17b54e791f6 /bin/OpenSim.Server.ini.example
parentFully implement unencrypted auth token operations (diff)
downloadopensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.zip
opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.tar.gz
opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.tar.bz2
opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.tar.xz
Add the new AuthStore to migrations. Update OpenSim.Server.ini
Diffstat (limited to '')
-rw-r--r--bin/OpenSim.Server.ini.example15
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]
9ServiceConnectors = "OpenSim.Server.Handlers.dll:AssetServiceConnector,OpenSim.Server.Handlers.dll:InventoryServiceInConnector,OpenSim.Server.Handlers.dll:FreeswitchServerConnector" 12ServiceConnectors = "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]
47LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 50LocalServiceModule = "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]
58AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
59StorageProvider = "OpenSim.Data.MySQL.dll"
60ConnectionString = "Data Source=localhost;Database=grid;User ID=grid;Password=grid;"
61; Realm = "auth"
62