diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-01-04 21:48:17 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-01-04 21:48:17 +0100 |
commit | fbba3876b537e84699b854e098936a5cd4fe0c8b (patch) | |
tree | 25ab681f333b83dc7b6859aa7b9504d158a497ec /storage-backend/config.inc.php | |
parent | 45cd34e42b9a980b76b66310c823fc8d2f5b55cb (diff) |
Reduced manual configuration, folder structure created
Determination of storage paths now relative to script directory and programmatically
Determination of get and put URLs now based on the slot request request
Basic access restriction to default directories
Diffstat (limited to 'storage-backend/config.inc.php')
-rw-r--r-- | storage-backend/config.inc.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/storage-backend/config.inc.php b/storage-backend/config.inc.php deleted file mode 100644 index f9b7537..0000000 --- a/storage-backend/config.inc.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php -/* - * Configuration file for http upload storage backend - */ - -return array( - // Array of keys of XMPP Server allowed to request slots - 'valid_xmpp_server_keys' => array('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' => array('/'), - // The path to the file storage - IMPORTANT: Add a trailing '/' - 'storage_base_path' => '[[PATH_TO_STORAGE]]', - // The path to the directory where the slots are stored - IMPORTANT: Add a trailing '/' - 'slot_registry_dir' => '[[PATH_TO_SLOT_STORAGE]]', - // The base URL to put the files - IMPORTANT: Add a trailing '/' - 'base_url_put' => '[[BASE_URL_FOR_PUT]]', - // The base URL to get the files - IMPORTANT: Add a trailing '/' - 'base_url_get' => '[[BASE_URL_FOR_GET]]', -); |