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.example364
1 files changed, 283 insertions, 81 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index bc5cbcc..099d4da 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -1,6 +1,29 @@
1; * Run 1; * Run
2; * $ Robust.exe -inifile Robust.ini 2; * $ Robust.exe -inifile Robust.ini
3; * 3; *
4; **
5; *
6; * The Const section allows us to define some basic information that we
7; * will use throughout our configuration. We will provide examples for
8; * setting the base url of the Robust server and the public and private ports
9; * it uses. Changing the values of the constants will set the operating
10; * parameters thoughout the configuration. Other constants that may prove
11; * to be useful may be added to the followin section. They may be
12; * referenced anywhere in the configuration by using ${Const|Name}. One
13; * such use is providing a base path for setting locations that Robust
14; * uses to write data.
15; *
16[Const]
17
18 ; The URL of the Robust server
19 BaseURL = "http://127.0.0.1"
20
21 ; The public port of the Robust server
22 PublicPort = "8002"
23
24 ; The private port of the Robust server
25 PrivatePort = "8003"
26
4 27
5; * The startup section lists all the connectors to start up in this server 28; * The startup section lists all the connectors to start up in this server
6; * instance. This may be only one, or it may be the entire server suite. 29; * instance. This may be only one, or it may be the entire server suite.
@@ -13,42 +36,68 @@
13; * [[<ConfigName>@]<port>/]<dll name>[:<class name>] 36; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
14; * 37; *
15[Startup] 38[Startup]
16 39 ; Place to create a PID file
17; Plugin Registry Location 40 ; If no path if specified then a PID file is not created.
18; Set path to directory for plugin registry. Information 41 ; PIDFile = "/tmp/Robust.exe.pid"
19; about the registered repositories and installed plugins 42
20; will be stored here 43 ; Plugin Registry Location
21; The Robust.exe process must hvae R/W access to the location 44 ; Set path to directory for plugin registry. Information
22RegistryLocation = "." 45 ; about the registered repositories and installed plugins
23 46 ; will be stored here
24 47 ; The Robust.exe process must have R/W access to the location
25; Modular configurations 48 RegistryLocation = "."
26; Set path to directory for modular ini files... 49
27; The Robust.exe process must hvae R/W access to the location 50 ; Modular configurations
28ConfigDirectory = "/home/opensim/etc/Configs" 51 ; Set path to directory for modular ini files...
29 52 ; The Robust.exe process must have R/W access to the location
53 ConfigDirectory = "."
54
55 ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
56 ConsoleHistoryFileEnabled = true
57
58 ; The history file can be just a filename (relative to OpenSim's bin/ directory
59 ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
60 ConsoleHistoryFile = "RobustConsoleHistory.txt"
61
62 ; How many lines of command history should we keep? (default is 100)
63 ConsoleHistoryFileLines = 100
64
30[ServiceList] 65[ServiceList]
31AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector" 66 AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
32InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector" 67 InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
33VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector" 68 ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
34GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector" 69 ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
35GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector" 70 GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
36AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" 71 GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
37OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector" 72 AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
38AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector" 73 OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
39LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector" 74 AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
40PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector" 75 LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
41UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector" 76 PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
42GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector" 77 UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
43FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector" 78 GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
44MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector" 79 AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector"
45MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector" 80 FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
81 MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
82 MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
83 ;; Uncomment this if you want offline IM to work
84 ;OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
85 ;; Uncomment this if you want Groups V2 to work
86 ;GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
87 ;; Uncomment to provide bakes caching
88 ;BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
89
90 ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
91 ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
92
93 ;; Uncomment if you want to have centralized estate data
94 ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
46 95
47; * This is common for all services, it's the network setup for the entire 96; * This is common for all services, it's the network setup for the entire
48; * server instance, if none is specified above 97; * server instance, if none is specified above
49; * 98; *
50[Network] 99[Network]
51 port = 8003 100 port = ${Const|PrivatePort}
52 101
53 ; HTTPS for "Out of band" management applications such as the remote admin 102 ; HTTPS for "Out of band" management applications such as the remote admin
54 ; module. May specify https_main = True to make the main http server 103 ; module. May specify https_main = True to make the main http server
@@ -69,25 +118,100 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
69 ; Password for cert 118 ; Password for cert
70 ; cert_pass = "password" 119 ; cert_pass = "password"
71 120
121 ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
122 ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
123 ;; but you want to protect them from unauthorized access.
124 ; AuthType = "BasicHttpAuthentication"
125 ; HttpAuthUsername = "some_username"
126 ; HttpAuthPassword = "some_password"
127 ;;
128 ;; AuthType above can be overriden in any of the service sections below by
129 ; AuthType = "None"
130 ;; This is useful in cases where you want to protect most of the services,
131 ;; but unprotect individual services. Username and Password can also be
132 ;; overriden if you want to use different credentials for the different services.
133
134 ;; By default, scripts are not allowed to call private services via llHttpRequest()
135 ;; Such calls are detected by the X-SecondLife-Shared HTTP header
136 ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
137 ;; (remember scripts can also be in visiting avatar attachments).
138 ;; This can be overriden in individual private service sections if necessary
139 AllowllHTTPRequestIn = false
140
141 ; * The following are for the remote console
142 ; * They have no effect for the local or basic console types
143 ; * Leave commented to diable logins to the console
144 ;ConsoleUser = Test
145 ;ConsolePass = secret
146 ;ConsolePort = 0
147
148[AccessControl]
149 ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
150 ;; Bar (|) separated list of viewers which may gain access to the regions.
151 ;; One can use a substring of the viewer name to enable only certain
152 ;; versions
153 ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
154 ;; - "Imprudence" has access
155 ;; - "Imprudence 1.3" has access
156 ;; - "Imprudence 1.3.1" has no access
157 ; AllowedClients = ""
158
159 ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {}
160 ;; Bar (|) separated list of viewers which may not gain access to the regions.
161 ;; One can use a Substring of the viewer name to disable only certain
162 ;; versions
163 ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
164 ;; - "Imprudence" has no access
165 ;; - "Imprudence 1.3" has no access
166 ;; - "Imprudence 1.3.1" has access
167 ; DeniedClients = ""
72 168
73; * The following are for the remote console
74; * They have no effect for the local or basic console types
75; * Leave commented to diable logins to the console
76;ConsoleUser = Test
77;ConsolePass = secret
78;ConsolePort = 0
79 169
80[DatabaseService] 170[DatabaseService]
171 ; PGSQL
172 ; Uncomment these lines if you want to use PGSQL storage
173 ; Change the connection string to your db details
174 ;StorageProvider = "OpenSim.Data.PGSQL.dll"
175 ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
176
177 ; MySQL
178 ; Uncomment these lines if you want to use MySQL storage
179 ; Change the connection string to your db details
81 StorageProvider = "OpenSim.Data.MySQL.dll" 180 StorageProvider = "OpenSim.Data.MySQL.dll"
82 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" 181 ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
83 182
183
84; * As an example, the below configuration precisely mimicks the legacy 184; * As an example, the below configuration precisely mimicks the legacy
85; * asset server. It is read by the asset IN connector (defined above) 185; * asset server. It is read by the asset IN connector (defined above)
86; * and it then loads the OUT connector (a local database module). That, 186; * and it then loads the OUT connector (a local database module). That,
87; * in turn, reads the asset loader and database connection information 187; * in turn, reads the asset loader and database connection information
88; * 188; *
89[AssetService] 189[AssetService]
190
191 ;; Choose an asset service (Only one option should be enabled)
90 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService" 192 LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
193 ;LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector"
194
195 ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files
196 ;; These directories must be on the same physical filesystem
197 ;BaseDirectory = "./fsassets/data"
198 ;SpoolDirectory = "./fsassets/tmp"
199
200 ;; Original service can be checked if FSAssets can not find an asset
201 ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
202
203 ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
204 ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
205 ;DaysBetweenAccessTimeUpdates = 30
206
207 ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
208 ;StorageProvider = ""
209 ;ConnectionString = ""
210 ;Realm = "fsassets"
211
212 ;; The following are common to both the default asset service and FSAsset service
213
214 ;; Default loader for loading default assets from XML on first run
91 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll" 215 DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
92 AssetLoaderArgs = "./assets/AssetSets.xml" 216 AssetLoaderArgs = "./assets/AssetSets.xml"
93 217
@@ -104,12 +228,18 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
104 ; Default is false. 228 ; Default is false.
105 AllowRemoteDeleteAllTypes = false 229 AllowRemoteDeleteAllTypes = false
106 230
231
107; * This configuration loads the inventory server modules. It duplicates 232; * This configuration loads the inventory server modules. It duplicates
108; * the function of the legacy inventory server 233; * the function of the legacy inventory server
109; * 234; *
110[InventoryService] 235[InventoryService]
111 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService" 236 LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
112 237
238 ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
239 ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
240 AllowDelete = true
241
242
113; * This is the new style grid service. 243; * This is the new style grid service.
114; * "Realm" is the table that is used for user lookup. 244; * "Realm" is the table that is used for user lookup.
115; * It defaults to "regions", which uses the legacy tables 245; * It defaults to "regions", which uses the legacy tables
@@ -122,11 +252,32 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
122 ;; Next, we can specify properties of regions, including default and fallback regions 252 ;; Next, we can specify properties of regions, including default and fallback regions
123 ;; The syntax is: Region_<RegionName> = "<flags>" 253 ;; The syntax is: Region_<RegionName> = "<flags>"
124 ;; or: Region_<RegionID> = "<flags>" 254 ;; or: Region_<RegionID> = "<flags>"
125 ;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate 255 ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
126 ;; For example: 256 ;;
257 ;; DefaultRegion If a local login cannot be placed in the required region (e.g. home region does not exist, avatar is not allowed entry, etc.)
258 ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
259 ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
260 ;; an explicit region.
261 ;;
262 ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
263 ;; region will be used.
264 ;;
265 ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
266 ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
267 ;;
268 ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
269 ;;
270 ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
271 ;;
272 ;; Example specification:
127 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion" 273 ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
128 ; (replace spaces with underscore) 274 ; (replace spaces with underscore)
129 275
276 ;; Allow supporting viewers to export content
277 ;; Set to false to prevent export
278 ExportSupported = true
279
280
130; * This is the configuration for the freeswitch server in grid mode 281; * This is the configuration for the freeswitch server in grid mode
131[FreeswitchService] 282[FreeswitchService]
132 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService" 283 LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
@@ -163,6 +314,7 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
163 ; EchoPort = 50505 314 ; EchoPort = 50505
164 ; AttemptSTUN = false 315 ; AttemptSTUN = false
165 316
317
166; * This is the new style authentication service. Currently, only MySQL 318; * This is the new style authentication service. Currently, only MySQL
167; * is implemented. 319; * is implemented.
168; * 320; *
@@ -182,11 +334,13 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
182 ;; Default is false. 334 ;; Default is false.
183 ; AllowSetPassword = false 335 ; AllowSetPassword = false
184 336
337
185[OpenIdService] 338[OpenIdService]
186 ; for the server connector 339 ; for the server connector
187 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService" 340 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
188 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" 341 UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
189 342
343
190; * This is the new style authentication service. Currently, only MySQL 344; * This is the new style authentication service. Currently, only MySQL
191; * is implemented. "Realm" is the table that is used for user lookup. 345; * is implemented. "Realm" is the table that is used for user lookup.
192; * It defaults to "useraccounts", which uses the new style. 346; * It defaults to "useraccounts", which uses the new style.
@@ -203,6 +357,7 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
203 GridService = "OpenSim.Services.GridService.dll:GridService" 357 GridService = "OpenSim.Services.GridService.dll:GridService"
204 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService" 358 InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
205 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" 359 AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
360 GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
206 361
207 ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2 362 ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
208 ;; to show a default "Ruth" avatar rather than a cloud for a newly created user. 363 ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
@@ -222,6 +377,12 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
222 ; for the server connector 377 ; for the server connector
223 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService" 378 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
224 379
380
381[AgentPreferencesService]
382 ; for the server connector
383 LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
384
385
225[PresenceService] 386[PresenceService]
226 ; for the server connector 387 ; for the server connector
227 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService" 388 LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
@@ -229,18 +390,24 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
229 ; bots using one account 390 ; bots using one account
230 AllowDuplicatePresences = false; 391 AllowDuplicatePresences = false;
231 392
393
232[AvatarService] 394[AvatarService]
233 ; for the server connector 395 ; for the server connector
234 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService" 396 LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
235 397
398
236[FriendsService] 399[FriendsService]
237 ; for the server connector 400 ; for the server connector
238 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService" 401 LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
239 402
403[EstateService]
404 LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
405
240[LibraryService] 406[LibraryService]
241 LibraryName = "OpenSim Library" 407 LibraryName = "OpenSim Library"
242 DefaultLibrary = "./inventory/Libraries.xml" 408 DefaultLibrary = "./inventory/Libraries.xml"
243 409
410
244[LoginService] 411[LoginService]
245 ; for the server connector 412 ; for the server connector
246 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService" 413 LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
@@ -256,45 +423,35 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
256 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService" 423 LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
257 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService" 424 FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
258 425
259 ;; Ask co-operative viewers to use a different currency name 426 ; The minimum user level required for a user to be able to login. 0 by default
427 ; If you disable a particular user's account then you can set their login level below this number.
428 ; You can also change this level from the console though these changes will not be persisted.
429 ; MinLoginLevel = 0
430
431 ; Ask co-operative viewers to use a different currency name
260 ;Currency = "" 432 ;Currency = ""
261 433
434 ;; Set minimum fee to publish classified
435 ; ClassifiedFee = 0
436
262 WelcomeMessage = "Welcome, Avatar!" 437 WelcomeMessage = "Welcome, Avatar!"
263 AllowRemoteSetLoginLevel = "false" 438 AllowRemoteSetLoginLevel = "false"
264 439
265 ; For V2 map 440 ; For V2 map
266 MapTileURL = "http://127.0.0.1:8002"; 441 MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
267 442
268 ; For V2/3 Web Profiles 443 ; Url to search service
269 ; Work in progress: The ProfileServerURL/OpenIDServerURL are 444 ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
270 ; being used in a development viewer as support for webprofiles 445
271 ; is being developed across the componets 446 ; For V3 destination guide
272 ; 447 ; DestinationGuide = "${Const|BaseURL}/guide"
273 ; ProfileServerURL = "http://127.0.0.1/profiles/[AGENT_NAME]" 448
274 ; 449 ; For V3 avatar picker (( work in progress ))
275 ; For V2/V3 webapp authentication SSO 450 ; AvatarPicker = "${Const|BaseURL}/avatars"
276 ; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
277 451
278 ; If you run this login server behind a proxy, set this to true 452 ; If you run this login server behind a proxy, set this to true
279 ; HasProxy = false 453 ; HasProxy = false
280 454
281 ;; Regular expressions for controlling which client versions are accepted/denied.
282 ;; An empty string means nothing is checked.
283 ;;
284 ;; Example 1: allow only these 3 types of clients (any version of them)
285 ;; AllowedClients = "Imprudence|Hippo|Second Life"
286 ;;
287 ;; Example 2: allow all clients except these
288 ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
289 ;;
290 ;; Note that these are regular expressions, so every character counts.
291 ;; Also note that this is very weak security and should not be trusted as a reliable means
292 ;; for keeping bad clients out; modified clients can fake their identifiers.
293 ;;
294 ;;
295 ;AllowedClients = ""
296 ;DeniedClients = ""
297
298 ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time" 455 ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
299 ;; Viewers do not listen to timezone sent by the server. They use Pacific Standard Time instead, 456 ;; Viewers do not listen to timezone sent by the server. They use Pacific Standard Time instead,
300 ;; but rely on the server to calculate Daylight Saving Time. Sending another DST than US Pacific 457 ;; but rely on the server to calculate Daylight Saving Time. Sending another DST than US Pacific
@@ -316,19 +473,48 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
316 ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows 473 ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
317 DSTZone = "America/Los_Angeles;Pacific Standard Time" 474 DSTZone = "America/Los_Angeles;Pacific Standard Time"
318 475
476 ;Basic Login Service Dos Protection Tweaks
477 ;;
478 ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
479 ;; If you set this to true and you don't have a transparent proxy, it may allow attackers to put random things in the X-Forwarded-For header to
480 ;; get around this basic DOS protection.
481 ;DOSAllowXForwardedForHeader = false
482 ;;
483 ;; The protector adds up requests during this rolling period of time, default 10 seconds
484 ;DOSRequestTimeFrameMS = 10000
485 ;;
486 ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
487 ;DOSMaxRequestsInTimeFrame = 5
488 ;;
489 ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
490 ;DOSForgiveClientAfterMS = 120000
491 ;;
492 ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
493
494
319[MapImageService] 495[MapImageService]
320 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" 496 LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
321 ; Set this if you want to change the default 497
322 ; TilesStoragePath = "maptiles" 498 ; Set this if you want to change the default
323 ; 499 ; TilesStoragePath = "maptiles"
324 ; If for some reason you have the AddMapTile service outside the firewall (e.g. 8002), 500 ;
325 ; you may want to set this. Otherwise, don't set it, because it's already protected. 501 ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
326 ; GridService = "OpenSim.Services.GridService.dll:GridService" 502 ; you may want to set this. Otherwise, don't set it, because it's already protected.
327 ; 503 ; GridService = "OpenSim.Services.GridService.dll:GridService"
504 ;
328 ; Additionally, if you run this server behind a proxy, set this to true 505 ; Additionally, if you run this server behind a proxy, set this to true
329 ; HasProxy = false 506 ; HasProxy = false
330 507
331 508
509[Messaging]
510 ; OfflineIM
511 OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
512
513
514[Groups]
515 ;; Sets the maximum number of groups an agent may join
516 ; MaxAgentGroups = 42
517
332 518
333[GridInfoService] 519[GridInfoService]
334 ; These settings are used to return information on a get_grid_info call. 520 ; These settings are used to return information on a get_grid_info call.
@@ -340,7 +526,7 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
340 ; See http://opensimulator.org/wiki/GridInfo 526 ; See http://opensimulator.org/wiki/GridInfo
341 527
342 ; login uri: for grid this is the login server URI 528 ; login uri: for grid this is the login server URI
343 login = http://127.0.0.1:8002/ 529 login = ${Const|BaseURL}:${Const|PublicPort}/
344 530
345 ; long grid name: the long name of your grid 531 ; long grid name: the long name of your grid
346 gridname = "the lost continent of hippo" 532 gridname = "the lost continent of hippo"
@@ -350,21 +536,37 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
350 536
351 ; login page: optional: if it exists it will be used to tell the client to use 537 ; login page: optional: if it exists it will be used to tell the client to use
352 ; this as splash page 538 ; this as splash page
353 ;welcome = http://127.0.0.1/welcome 539 ;welcome = ${Const|BaseURL}/welcome
354 540
355 ; helper uri: optional: if it exists if will be used to tell the client to use 541 ; helper uri: optional: if it exists it will be used to tell the client to use
356 ; this for all economy related things 542 ; this for all economy related things
357 ;economy = http://127.0.0.1:9000/ 543 ;economy = ${Const|BaseURL}/economy
358 544
359 ; web page of grid: optional: page providing further information about your grid 545 ; web page of grid: optional: page providing further information about your grid
360 ;about = http://127.0.0.1/about/ 546 ;about = ${Const|BaseURL}/about
361 547
362 ; account creation: optional: page providing further information about obtaining 548 ; account creation: optional: page providing further information about obtaining
363 ; a user account on your grid 549 ; a user account on your grid
364 ;register = http://127.0.0.1/register 550 ;register = ${Const|BaseURL}/register
365 551
366 ; help: optional: page providing further assistance for users of your grid 552 ; help: optional: page providing further assistance for users of your grid
367 ;help = http://127.0.0.1/help 553 ;help = ${Const|BaseURL}/help
368 554
369 ; password help: optional: page providing password assistance for users of your grid 555 ; password help: optional: page providing password assistance for users of your grid
370 ;password = http://127.0.0.1/password 556 ;password = ${Const|BaseURL}/password
557
558
559[UserProfilesService]
560 LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
561 Enabled = false
562 ;; Configure this for separate profiles database
563 ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
564 ;; Realm = UserProfiles
565 UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
566 AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
567
568
569[BakedTextureService]
570 LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
571 ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
572 BaseDirectory = "./bakes"