pfsense/usr/local/www/preload.php
Scott Ullrich ae160a484e * Don't pre-cache auth.inc
* Remove supporting goo
2006-01-07 00:46:24 +00:00

12 lines
190 B
PHP
Executable File

<?php
/* make sure we are coming from 127.0.0.1 */
$ip = $HTTP_SERVER_VARS['REMOTE_ADDR'];
if($ip <> "127.0.0.1")
exit;
/* preload */
require("config.inc");
require("functions.inc");
?>