aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/Robust.ini.example')
-rw-r--r--bin/Robust.ini.example37
1 files changed, 18 insertions, 19 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index 96dfc01..0353eec 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -1,16 +1,18 @@
1; * Run
2; * $ Robust.exe -inifile Robust.ini
3; *
4
1; * The startup section lists all the connectors to start up in this server 5; * 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. 6; * instance. This may be only one, or it may be the entire server suite.
3; * Multiple connectors should be seaprated by commas. 7; * 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; * 8; *
8; * These are the IN connectors the server uses, the in connectors 9; * These are the IN connectors the server uses, the in connectors
9; * read this config file and load the needed service and database connectors 10; * read this config file and load the needed service and database connectors
10; * 11; *
12; * The full syntax of a connector string is:
13; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
11; * 14; *
12[Startup] 15[Startup]
13
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" 16ServiceConnectors = "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"
15 17
16; * This is common for all services, it's the network setup for the entire 18; * This is common for all services, it's the network setup for the entire
@@ -30,7 +32,6 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
30 StorageProvider = "OpenSim.Data.MySQL.dll" 32 StorageProvider = "OpenSim.Data.MySQL.dll"
31 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" 33 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
32 34
33
34; * As an example, the below configuration precisely mimicks the legacy 35; * As an example, the below configuration precisely mimicks the legacy
35; * asset server. It is read by the asset IN connector (defined above) 36; * 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, 37; * and it then loads the OUT connector (a local database module). That,
@@ -54,8 +55,10 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
54; * 55; *
55[GridService] 56[GridService]
56 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService" 57 LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
57 Realm = "regions" 58 ; Realm = "regions"
58 ; AllowDuplicateNames = "True" 59 ; AllowDuplicateNames = "True"
60 ; Check4096 = "False"
61
59 ;; Next, we can specify properties of regions, including default and fallback regions 62 ;; Next, we can specify properties of regions, including default and fallback regions
60 ;; The syntax is: Region_<RegionName> = "<flags>" 63 ;; The syntax is: Region_<RegionName> = "<flags>"
61 ;; or: Region_<RegionID> = "<flags>" 64 ;; or: Region_<RegionID> = "<flags>"
@@ -70,8 +73,8 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
70 73
71; * This is the new style authentication service. Currently, only MySQL 74; * This is the new style authentication service. Currently, only MySQL
72; * is implemented. "Realm" is the table that is used for user lookup. 75; * 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 76; * It defaults to "users", which uses the legacy tables as an
74; * as an authentication source. 77; * authentication source.
75; * 78; *
76[AuthenticationService] 79[AuthenticationService]
77 ; for the server connector 80 ; for the server connector
@@ -82,15 +85,17 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
82 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 85 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
83 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" 86 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
84 87
85; * This is the new style user service. 88; * This is the new style authentication service. Currently, only MySQL
86; * "Realm" is the table that is used for user lookup. 89; * is implemented. "Realm" is the table that is used for user lookup.
87; * It defaults to "users", which uses the legacy tables 90; * It defaults to "useraccounts", which uses the new style.
91; * Realm = "users" will use the legacy tables as an authentication source
88; * 92; *
89[UserAccountService] 93[UserAccountService]
90 ; for the server connector 94 ; for the server connector
91 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" 95 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
92 ; Realm = "useraccounts" 96 ; Realm = "useraccounts"
93 ;; These are for creating new accounts by the service 97
98 ; These are for creating new accounts by the service
94 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 99 AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
95 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService" 100 PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
96 GridService = "OpenSim.Services.GridService.dll:GridService" 101 GridService = "OpenSim.Services.GridService.dll:GridService"
@@ -158,27 +163,21 @@ ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003
158 163
159 ; login page: optional: if it exists it will be used to tell the client to use 164 ; login page: optional: if it exists it will be used to tell the client to use
160 ; this as splash page 165 ; this as splash page
161 ; currently unused
162 ;welcome = http://127.0.0.1/welcome 166 ;welcome = http://127.0.0.1/welcome
163 167
164 ; helper uri: optional: if it exists if will be used to tell the client to use 168 ; helper uri: optional: if it exists if will be used to tell the client to use
165 ; this for all economy related things 169 ; this for all economy related things
166 ; currently unused
167 ;economy = http://127.0.0.1:9000/ 170 ;economy = http://127.0.0.1:9000/
168 171
169 ; web page of grid: optional: page providing further information about your grid 172 ; web page of grid: optional: page providing further information about your grid
170 ; currently unused
171 ;about = http://127.0.0.1/about/ 173 ;about = http://127.0.0.1/about/
172 174
173 ; account creation: optional: page providing further information about obtaining 175 ; account creation: optional: page providing further information about obtaining
174 ; a user account on your grid 176 ; a user account on your grid
175 ; currently unused
176 ;register = http://127.0.0.1/register 177 ;register = http://127.0.0.1/register
177 178
178 ; help: optional: page providing further assistance for users of your grid 179 ; help: optional: page providing further assistance for users of your grid
179 ; currently unused
180 ;help = http://127.0.0.1/help 180 ;help = http://127.0.0.1/help
181 181
182 ; password help: optional: page providing password assistance for users of your grid 182 ; password help: optional: page providing password assistance for users of your grid
183 ; currently unused
184 ;password = http://127.0.0.1/password 183 ;password = http://127.0.0.1/password