wiki: try and re-enable passwordattemptthrottle

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2023-06-04 08:28:16 -07:00
parent 19f22845b2
commit 4a99b7b62a

View file

@ -644,6 +644,10 @@ $_SERVER['HTTP_HOST'] = 'fedoraproject.org';
$_SERVER['REQUEST_SCHEME'] = 'https';
$_SERVER['SERVER_PORT'] = 443;
# do not bother to throttle login attempts
# users MUST have a valid OIDC token so brute force will get them nowhere.
$wgPasswordAttemptThrottle = false;
# Looks like mediawiki is using undefined constants.... Let's shut that up
error_reporting(E_ALL ^ E_NOTICE);