diff options
Diffstat (limited to 'bin/Robust.ini.example')
-rw-r--r-- | bin/Robust.ini.example | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example index de6fc28..6a84574 100644 --- a/bin/Robust.ini.example +++ b/bin/Robust.ini.example | |||
@@ -88,6 +88,15 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
88 | ;ConsolePort = 0 | 88 | ;ConsolePort = 0 |
89 | 89 | ||
90 | [DatabaseService] | 90 | [DatabaseService] |
91 | ; PGSQL | ||
92 | ; Uncomment these lines if you want to use PGSQL storage | ||
93 | ; Change the connection string to your db details | ||
94 | ;StorageProvider = "OpenSim.Data.PGSQL.dll" | ||
95 | ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;" | ||
96 | |||
97 | ; MySQL | ||
98 | ; Uncomment these lines if you want to use MySQL storage | ||
99 | ; Change the connection string to your db details | ||
91 | StorageProvider = "OpenSim.Data.MySQL.dll" | 100 | StorageProvider = "OpenSim.Data.MySQL.dll" |
92 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" | 101 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;" |
93 | 102 | ||
@@ -356,6 +365,25 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto | |||
356 | ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows | 365 | ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows |
357 | DSTZone = "America/Los_Angeles;Pacific Standard Time" | 366 | DSTZone = "America/Los_Angeles;Pacific Standard Time" |
358 | 367 | ||
368 | ;Basic Login Service Dos Protection Tweaks | ||
369 | ;; | ||
370 | ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true | ||
371 | ;; 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 | ||
372 | ;; get around this basic DOS protection. | ||
373 | ;DOSAllowXForwardedForHeader = false | ||
374 | ;; | ||
375 | ;; The protector adds up requests during this rolling period of time, default 10 seconds | ||
376 | ;DOSRequestTimeFrameMS = 10000 | ||
377 | ;; | ||
378 | ;; The amount of requests in the above timeframe from the same endpoint that triggers protection | ||
379 | ;DOSMaxRequestsInTimeFrame = 5 | ||
380 | ;; | ||
381 | ;; The amount of time that a specific endpoint is blocked. Default 2 minutes. | ||
382 | ;DOSForgiveClientAfterMS = 120000 | ||
383 | ;; | ||
384 | ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0. | ||
385 | |||
386 | |||
359 | [MapImageService] | 387 | [MapImageService] |
360 | LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" | 388 | LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService" |
361 | ; Set this if you want to change the default | 389 | ; Set this if you want to change the default |