aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.ini.example
diff options
context:
space:
mode:
authorAi Austin2010-08-16 15:44:54 +0100
committerJustin Clark-Casey (justincc)2010-08-20 18:03:21 +0100
commit2c0ba8718ac638483461e7862bf487ed11d23a4a (patch)
tree101ff9ccc81e23c842f56a4c935743da39a79bb4 /bin/Robust.ini.example
parentminor: remove mono compiler warning (diff)
downloadopensim-SC_OLD-2c0ba8718ac638483461e7862bf487ed11d23a4a.zip
opensim-SC_OLD-2c0ba8718ac638483461e7862bf487ed11d23a4a.tar.gz
opensim-SC_OLD-2c0ba8718ac638483461e7862bf487ed11d23a4a.tar.bz2
opensim-SC_OLD-2c0ba8718ac638483461e7862bf487ed11d23a4a.tar.xz
Robust.ini.example and Robust.HG.ini.example default: corrected comment about realm for UserAccountService to state default is useraccount, and include default realm commented out in every case
Diffstat (limited to 'bin/Robust.ini.example')
-rw-r--r--bin/Robust.ini.example25
1 files changed, 14 insertions, 11 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index 96dfc01..a940cc8 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -1,14 +1,17 @@
1; * Run
2; * $ Robust.exe -inifile Robust.ini
3; *
1; * The startup section lists all the connectors to start up in this server 4; * The startup section lists all the connectors to start up in this server
2; * instance. This may be only one, or it may be the entire server suite. 5; * instance. This may be only one, or it may be the entire server suite.
3; * Multiple connectors should be seaprated by commas. 6; * Multiple connectors should be separated by commas.
4; * The startup section lists all the connectors to start up in this server
5; * instance. This may be only one, or it may be the entire server suite.
6; * Multiple connectors should be seaprated by commas.
7; * 7; *
8; * These are the IN connectors the server uses, the in connectors 8; * These are the IN connectors the server uses, the in connectors
9; * read this config file and load the needed service and database connectors 9; * read this config file and load the needed service and database connectors
10; * 10; *
11; * The full syntax of a connector string is:
12; * [[<ConfigName>@]<port>/]<class name>[:<dll name>]
11; * 13; *
14
12[Startup] 15[Startup]
13 16
14ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector" 17ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8002/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
@@ -30,7 +33,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
30 StorageProvider = "OpenSim.Data.MySQL.dll" 33 StorageProvider = "OpenSim.Data.MySQL.dll"
31 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" 34 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
32 35
33
34; * As an example, the below configuration precisely mimicks the legacy 36; * As an example, the below configuration precisely mimicks the legacy
35; * asset server. It is read by the asset IN connector (defined above) 37; * asset server. It is read by the asset IN connector (defined above)
36; * and it then loads the OUT connector (a local database module). That, 38; * and it then loads the OUT connector (a local database module). That,
@@ -54,7 +56,7 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
54; * 56; *
55[GridService] 57[GridService]
56 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 58 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
57 Realm = "regions" 59 ; Realm = "regions"
58 ; AllowDuplicateNames = "True" 60 ; AllowDuplicateNames = "True"
59 ;; Next, we can specify properties of regions, including default and fallback regions 61 ;; Next, we can specify properties of regions, including default and fallback regions
60 ;; The syntax is: Region_<RegionName> = "<flags>" 62 ;; The syntax is: Region_<RegionName> = "<flags>"
@@ -70,8 +72,8 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
70 72
71; * This is the new style authentication service. Currently, only MySQL 73; * This is the new style authentication service. Currently, only MySQL
72; * is implemented. "Realm" is the table that is used for user lookup. 74; * is implemented. "Realm" is the table that is used for user lookup.
73; * By setting it to "users", you can use the old style users table 75; * It defaults to "users", which uses the legacy tables as an
74; * as an authentication source. 76; * authentication source.
75; * 77; *
76[AuthenticationService] 78[AuthenticationService]
77 ; for the server connector 79 ; for the server connector
@@ -82,9 +84,10 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
82 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 84 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
83 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" 85 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
84 86
85; * This is the new style user service. 87; * This is the new style authentication service. Currently, only MySQL
86; * "Realm" is the table that is used for user lookup. 88; * is implemented. "Realm" is the table that is used for user lookup.
87; * It defaults to "users", which uses the legacy tables 89; * It defaults to "useraccounts", which uses the new style.
90; * Realm = "users" will use the legacy tables as an authentication source
88; * 91; *
89[UserAccountService] 92[UserAccountService]
90 ; for the server connector 93 ; for the server connector