add hide_dot_files attribute to app/config/app.php

and fix a little typo
This commit is contained in:
Andreas Schneider
2021-09-18 14:13:22 +02:00
committed by GitHub
parent 026f88ff85
commit 774da418fd

View File

@@ -122,7 +122,7 @@ return [
],
/**
* Whether or not to hide application files/directories form the listing.
* Whether or not to hide application files/directories from the listing.
*
* Default value: true
*/
@@ -159,4 +159,12 @@ return [
* Default value: 1000000000
*/
'max_hash_size' => DI\env('MAX_HASH_SIZE', 1000000000),
/**
* Whether or not to hide dot files/directories from the listing.
* Like '.env' or '.ssh/'
*
* Default value: true
*/
'hide_dot_files' => DI\env('HIDE_DOT_FILES', true),
];