Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
fbcbd5064f | |||
006470a427 | |||
95f1e9368b | |||
2c9ec6000e | |||
64d684a0b8 | |||
a95b104f21 | |||
eacd512e14 | |||
0ff841314c | |||
756660c624 | |||
dd623d7e43 | |||
19125b7b27 |
@ -43,7 +43,7 @@ steps:
|
|||||||
from_secret: drone_abra-bot_token
|
from_secret: drone_abra-bot_token
|
||||||
fork: true
|
fork: true
|
||||||
repositories:
|
repositories:
|
||||||
- toolshed/auto-recipes-catalogue-json
|
- coop-cloud/auto-recipes-catalogue-json
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event: tag
|
event: tag
|
||||||
|
@ -191,8 +191,13 @@ $wgGroupPermissions['*']['createaccount'] = false;
|
|||||||
$wgDebugLogFile = "/var/log/debug-{$wgDBname}.log";
|
$wgDebugLogFile = "/var/log/debug-{$wgDBname}.log";
|
||||||
$wgShowExceptionDetails = true;
|
$wgShowExceptionDetails = true;
|
||||||
$wgDebugToolbar = true;
|
$wgDebugToolbar = true;
|
||||||
|
{{ else }}
|
||||||
|
$wgShowDebug = false;
|
||||||
|
$wgDevelopmentWarnings = false;
|
||||||
|
$wgDeprecationReleaseLimit = '1.0';
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{ if eq (env "OPENID_ENABLED") "1" }}
|
{{ if eq (env "OPENID_ENABLED") "1" }}
|
||||||
wfLoadExtension( 'PluggableAuth' );
|
wfLoadExtension( 'PluggableAuth' );
|
||||||
wfLoadExtension( 'OpenIDConnect' );
|
wfLoadExtension( 'OpenIDConnect' );
|
||||||
@ -255,3 +260,15 @@ $wgFileExtensions = array(
|
|||||||
|
|
||||||
$wgUploadSizeWarning = 1000000000;
|
$wgUploadSizeWarning = 1000000000;
|
||||||
$wgMaxUploadSize = 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 ],
|
||||||
|
];
|
||||||
|
|
||||||
|
2
abra.sh
2
abra.sh
@ -1,4 +1,4 @@
|
|||||||
export LOCAL_SETTINGS_CONF_VERSION=v23
|
export LOCAL_SETTINGS_CONF_VERSION=v27
|
||||||
export HTACCESS_CONF_VERSION=v1
|
export HTACCESS_CONF_VERSION=v1
|
||||||
export ENTRYPOINT_CONF_VERSION=v21
|
export ENTRYPOINT_CONF_VERSION=v21
|
||||||
export COMPOSER_LOCAL_CONF_VERSION=v5
|
export COMPOSER_LOCAL_CONF_VERSION=v5
|
||||||
|
Reference in New Issue
Block a user