diff options
Diffstat (limited to '')
-rw-r--r-- | storage-backend/config/config.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/storage-backend/config/config.inc.php b/storage-backend/config/config.inc.php new file mode 100644 index 0000000..dd05a15 --- /dev/null +++ b/storage-backend/config/config.inc.php @@ -0,0 +1,13 @@ +<?php +/* + * Configuration file for http upload storage backend + */ + +return [ + // Array of keys of XMPP Server allowed to request slots + 'valid_xmpp_server_keys' => ['abc'], + // Max Upload size in bytes + 'max_upload_file_size' => 10 * 1024 * 1024, + // Array of characters which are not allowed in filenames + 'invalid_characters_in_filename' => ['/'], +]; |