mirror of
https://github.com/nextcloud/documentation.git
synced 2025-10-26 11:18:02 +00:00
generate documentation from config.sample.php
This commit is contained in:
parent
7309266e05
commit
c4237370f3
@ -2851,39 +2851,55 @@ restricted. Defaults to the value of `datadirectory` if unset.
|
||||
If set, the value MUST be located _outside_ of the installation directory of Nextcloud and
|
||||
writable by the Web server user.
|
||||
|
||||
blacklisted_files
|
||||
^^^^^^^^^^^^^^^^^
|
||||
forbidden_filenames
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
::
|
||||
|
||||
'blacklisted_files' => ['.htaccess'],
|
||||
'forbidden_filenames' => ['.htaccess'],
|
||||
|
||||
Blacklist a specific file or files and disallow the upload of files
|
||||
Block a specific file or files and disallow the upload of files
|
||||
with this name. ``.htaccess`` is blocked by default.
|
||||
|
||||
WARNING: USE THIS ONLY IF YOU KNOW WHAT YOU ARE DOING.
|
||||
|
||||
Note that this list is case-insensitive.
|
||||
|
||||
Defaults to ``array('.htaccess')``
|
||||
|
||||
forbidden_chars
|
||||
^^^^^^^^^^^^^^^
|
||||
forbidden_filename_characters
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
::
|
||||
|
||||
'forbidden_chars' => [],
|
||||
'forbidden_filename_characters' => [],
|
||||
|
||||
Blacklist characters from being used in filenames. This is useful if you
|
||||
Block characters from being used in filenames. This is useful if you
|
||||
have a filesystem or OS which does not support certain characters like windows.
|
||||
|
||||
The '/' and '\' characters are always forbidden.
|
||||
The '/' and '\' characters are always forbidden, as well as all characters in the ASCII range [0-31].
|
||||
|
||||
Example for windows systems: ``array('?', '<', '>', ':', '*', '|', '"', chr(0), "\n", "\r")``
|
||||
Example for windows systems: ``array('?', '<', '>', ':', '*', '|', '"')``
|
||||
see https://en.wikipedia.org/wiki/Comparison_of_file_systems#Limits
|
||||
|
||||
Defaults to ``array()``
|
||||
|
||||
forbidden_filename_extensions
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
|
||||
::
|
||||
|
||||
'forbidden_filename_extensions' => ['.part', '.filepart'],
|
||||
|
||||
Deny extensions from being used for filenames.
|
||||
|
||||
The '.part' extension is always forbidden, as this is used internally by Nextcloud.
|
||||
|
||||
Defaults to ``array('.filepart', '.part')``
|
||||
|
||||
theme
|
||||
^^^^^
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user