mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-08-10 07:54:00 +02:00
Minor changes.
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
"version": "0.22-dev",
|
"version": "0.22-dev",
|
||||||
"description": "a modern HTTP web server index",
|
"description": "a modern HTTP web server index",
|
||||||
"url": "http://larsjung.de/h5ai/",
|
"url": "http://larsjung.de/h5ai/",
|
||||||
"author": "Lars Jung <lrsjng@gmail.com>",
|
"author": "Lars Jung",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
{{pkg.name}} {{pkg.version}}
|
{{pkg.name}} {{pkg.version}}
|
||||||
|
{{pkg.url}}
|
||||||
|
|
||||||
Configuration
|
Configuration
|
||||||
options, types and localization
|
options, types and localization
|
||||||
|
@@ -1,26 +1,27 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
* {{pkg.name}} {{pkg.version}}
|
{{pkg.name}} {{pkg.version}}
|
||||||
*
|
{{pkg.url}}
|
||||||
* PHP Configuration
|
|
||||||
* filesystem paths and file ignore rules
|
PHP Configuration
|
||||||
*/
|
filesystem paths and file ignore rules
|
||||||
|
*/
|
||||||
|
|
||||||
global $H5AI_CONFIG;
|
global $H5AI_CONFIG;
|
||||||
|
|
||||||
$H5AI_CONFIG = array(
|
$H5AI_CONFIG = array(
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Files/folders that should not be listed. Specified
|
Files/folders that should not be listed. Specified
|
||||||
* by the complete filename or by a regular expression.
|
by the complete filename or by a regular expression.
|
||||||
* http://www.php.net/manual/en/function.preg-match.php
|
http://www.php.net/manual/en/function.preg-match.php
|
||||||
*/
|
*/
|
||||||
"IGNORE" => array(),
|
"IGNORE" => array(),
|
||||||
"IGNORE_PATTERNS" => array("/^\\./", "/^_h5ai/"),
|
"IGNORE_PATTERNS" => array("/^\\./", "/^_h5ai/"),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Folders that contain one of these files will be considered
|
Folders that contain one of these files will be considered
|
||||||
* not to be h5ai indexed folders.
|
not to be h5ai indexed folders.
|
||||||
*/
|
*/
|
||||||
"INDEX_FILES" => array("index.html", "index.htm", "index.php")
|
"INDEX_FILES" => array("index.html", "index.htm", "index.php")
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user