From: <gem...@li...> - 2011-11-21 11:30:42
|
Revision: 252 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=252&view=rev Author: michieltcs Date: 2011-11-21 11:30:36 +0000 (Mon, 21 Nov 2011) Log Message: ----------- Add askThrottle section Modified Paths: -------------- trunk/new_project/application/configs/project.ini Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2011-11-21 11:22:10 UTC (rev 251) +++ trunk/new_project/application/configs/project.ini 2011-11-21 11:30:36 UTC (rev 252) @@ -53,6 +53,33 @@ session.idleTimeout = 1800 ;------------------------------------------------------- +; ASK THROTTLE SECTION +; +; Sets values that control the throttling (slowdowns to +; combat brute-force attacks) of the ask / token +; controller. +; +; askThrottle.period +; +; Look for failed token attempts in from now to +; X seconds ago. +; +; askThrottle.threshold +; +; If the number of failed token attempts exceeds this +; number, starting throttling. +; +; askThrottle.delay +; +; Throttle by delaying each request by X seconds. +; +;------------------------------------------------------- + +askThrottle.period = 900 +askThrottle.threshold = 300 +askThrottle.delay = 10 + +;------------------------------------------------------- ; ASK DELAY SECTION ; ; askDelay This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |