Added 127. to list of blacklisted hosts

pull/2/head
Jim Heising 2014-08-28 08:45:18 -07:00
parent 7dd6defa73
commit 33ff559e67
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@ exports.proxy_request_timeout_ms = 10000; // The lenght of time we'll wait for a
exports.max_request_length = 100000; // The maximum length of characters allowed for a request or a response.
exports.enable_rate_limiting = true;
exports.max_requests_per_second = 10; // The maximum number of requests per second to allow from a given IP.
exports.blacklist_hostname_regex = /^(10\.|192\.|localhost$)/i; // Good for limiting access to internal IP addresses and hosts.
exports.blacklist_hostname_regex = /^(10\.|192\.|127\.|localhost$)/i; // Good for limiting access to internal IP addresses and hosts.