moved ip whitelist to options

master
Markus Staab 11 years ago
parent dbcbd6825e
commit 39466a8dbd
  1. 4
      index.php

@ -3,6 +3,8 @@
$options = array( $options = array(
// which string should represent a tab for indentation // which string should represent a tab for indentation
'tabsize' => 4, 'tabsize' => 4,
// whitelist of IPs which don't need to be authenticated
'ip_whitelist' => array('127.0.0.1', '::1'),
); );
/** /**
@ -18,7 +20,7 @@ $options = array(
* *
* Source on Github http://github.com/Seldaek/php-console * Source on Github http://github.com/Seldaek/php-console
*/ */
if (!in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'), true)) { if (!in_array($_SERVER['REMOTE_ADDR'], $options['ip_whitelist'], true)) {
header('HTTP/1.1 401 Access unauthorized'); header('HTTP/1.1 401 Access unauthorized');
die('ERR/401 Go Away'); die('ERR/401 Go Away');
} }

Loading…
Cancel
Save