56 lines
2.2 KiB
PHP
56 lines
2.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package Grav\Core
|
|
*
|
|
* @copyright Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
|
|
* @license MIT License; see LICENSE file for details.
|
|
*/
|
|
|
|
if (PHP_SAPI !== 'cli-server') {
|
|
die('This script cannot be run from browser. Run it from a CLI.');
|
|
}
|
|
|
|
$_SERVER['PHP_CLI_ROUTER'] = true;
|
|
|
|
$root = $_SERVER['DOCUMENT_ROOT'];
|
|
$path = $_SERVER['SCRIPT_NAME'];
|
|
if ($path !== '/index.php' && is_file($root . $path)) {
|
|
if (!(
|
|
// Block all direct access to files and folders beginning with a dot
|
|
strpos($path, '/.') !== false
|
|
// Block all direct access for these folders
|
|
|| preg_match('`^/(\.git|cache|bin|logs|backup|webserver-configs|tests)/`ui', $path)
|
|
// Block access to specific file types for these system folders
|
|
|| preg_match('`^/(system|vendor)/(.*)\.(txt|xml|md|html|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$`ui', $path)
|
|
// Block access to specific file types for these user folders
|
|
|| preg_match('`^/(user)/(.*)\.(txt|md|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$`ui', $path)
|
|
// Block all direct access to .md files
|
|
|| preg_match('`\.md$`ui', $path)
|
|
// Block access to specific files in the root folder
|
|
|| preg_match('`^/(LICENSE\.txt|composer\.lock|composer\.json|\.htaccess)$`ui', $path)
|
|
)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$grav_index = 'index.php';
|
|
|
|
/* Check the GRAV_BASEDIR environment variable and use if set */
|
|
|
|
$grav_basedir = getenv('GRAV_BASEDIR') ?: '';
|
|
if ($grav_basedir) {
|
|
$grav_index = ltrim($grav_basedir, '/') . DIRECTORY_SEPARATOR . $grav_index;
|
|
$grav_basedir = DIRECTORY_SEPARATOR . trim($grav_basedir, DIRECTORY_SEPARATOR);
|
|
define('GRAV_ROOT', str_replace(DIRECTORY_SEPARATOR, '/', getcwd()) . $grav_basedir);
|
|
}
|
|
|
|
$_SERVER = array_merge($_SERVER, $_ENV);
|
|
$_SERVER['SCRIPT_FILENAME'] = $_SERVER['DOCUMENT_ROOT'] . $grav_basedir .DIRECTORY_SEPARATOR . 'index.php';
|
|
$_SERVER['SCRIPT_NAME'] = $grav_basedir . DIRECTORY_SEPARATOR . 'index.php';
|
|
$_SERVER['PHP_SELF'] = $grav_basedir . DIRECTORY_SEPARATOR . 'index.php';
|
|
|
|
error_log(sprintf('%s:%d [%d]: %s', $_SERVER['REMOTE_ADDR'], $_SERVER['REMOTE_PORT'], http_response_code(), $_SERVER['REQUEST_URI']), 4);
|
|
|
|
require $grav_index;
|