added support for backblaze buckets for scalability. closes #49

This commit is contained in:
Chris
2018-03-23 20:34:34 +01:00
parent 3ef3bf9b8b
commit e6753d7bdb
4 changed files with 319 additions and 2 deletions

View File

@@ -71,4 +71,16 @@ define('FORCE_DOMAIN', false);
//Shall errors be displayed to the user?
//For dev environments: true, in production: false
define('SHOW_ERRORS', false);
define('SHOW_ERRORS', false);
//for scalability reasons you might want to upload images to cloud providers
//remove comments to use
/* BACKBLAZE B2 */
/* You can find your info here: https://secure.backblaze.com/b2_buckets.htm */
//define('BACKBLAZE',true); //true=>use backblaze to upload images, false=>don't
//define('BACKBLAZE_ID','');
//define('BACKBLAZE_KEY', '');
//define('BACKBLAZE_BUCKET_ID', '');
//define('BACKBLAZE_BUCKET_NAME', '');