Allows ExpressionEngine site administrators the ability to set a white list specific IP Addresses from the Throttle mechanism within ExpressionEngine.
- Allow blanket IP based exclusion
- Configure to ignore logged in users from being throttled
White listed IP Addresses are to be included wihtin your ExpressionEngine config file as a simple array. For example:
//throttling
$config['throttling_whitelist'] = [
'127.0.0.1',
'184.179.247.80',
];
$config['throttle_ignore_logged_in'] = 'y';