Disable throttling temporarily to work around too-eager-throttling due

to MW only seeing the internal docker networking addresses for incoming
traffic.
This commit is contained in:
Flancian 2023-09-01 17:41:25 +02:00
parent 3e3482b89e
commit 19125b7b27
2 changed files with 13 additions and 1 deletions

View File

@ -248,3 +248,15 @@ $wgFileExtensions = array(
$wgUploadSizeWarning = 1000000000;
$wgMaxUploadSize = 1000000000;
# Greatly relax IP-based throttling for logging in while we work around docker networking issues.
# https://social.coop/@flancian/110980993608947217
$wgPasswordAttemptThrottle = [
// Short term limit
[ 'count' => 9999, 'seconds' => 300 ],
// Long term limit. We need to balance the risk
// of somebody using this as a DoS attack to lock someone
// out of their account, and someone doing a brute force attack.
[ 'count' => 999999, 'seconds' => 60 * 60 * 48 ],
];

View File

@ -1,4 +1,4 @@
export LOCAL_SETTINGS_CONF_VERSION=v22
export LOCAL_SETTINGS_CONF_VERSION=v25
export HTACCESS_CONF_VERSION=v1
export ENTRYPOINT_CONF_VERSION=v20
export COMPOSER_LOCAL_CONF_VERSION=v5