Merge branch 'package'
[speedfreak] / Server / application / config / api.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /*
3  * Configuration file for API controller
4  */
5
6 /*
7  * URL where to redirect if no parameters are given to API controller
8  */
9  $config['default_redirect'] = 'http://www.speedfreak-app.com';
10  
11 /*
12  * Salt for hashing (should always be changed on deployment!)
13  */
14 $config['salf'] = 'klzdjkhI/&/567Û%#ÛgbnkBJHVTVjdhiuhdbmzcss-__FDHSYUWYUTUDGBZ';
15
16 /*
17  * Maximum filesize for avatar images (in bytes)
18  */
19 $config['avatar_max_filesize'] = '102400';
20
21 /*
22  * Allowed image types for avatars
23  */
24 $config['avatar_allowed_filetypes'] = array('image/jpeg');