aboutsummaryrefslogtreecommitdiffstats
path: root/storage-backend/config/config.inc.php
blob: eb54511f0ee34bb229eb5c0d55f8a929de4a8d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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' => ['/'],
  // Validity time of a delete token in seconds
  'delete_token_validity' => 5 * 60,
  // Flag to whether deletion is only allowed by creator or anybody
  'delete_only_by_creator' => true,
  // The default count of items returned when a file list is requested
  'list_default_limit' => 30,
];
?>