2013-09-20 04:21:39 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2014-01-28 04:36:04 -05:00
|
|
|
* wallabag, self hostable application allowing you to not miss any content anymore
|
2013-09-20 04:21:39 -04:00
|
|
|
*
|
2014-01-28 04:36:04 -05:00
|
|
|
* @category wallabag
|
|
|
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
2013-09-20 04:21:39 -04:00
|
|
|
* @copyright 2013
|
|
|
|
* @license http://www.wtfpl.net/ see COPYING file
|
|
|
|
*/
|
|
|
|
|
|
|
|
define ('SALT', ''); # put a strong string here
|
|
|
|
define ('LANG', 'en_EN.utf8');
|
|
|
|
|
|
|
|
define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite
|
|
|
|
|
|
|
|
define ('STORAGE_SQLITE', ROOT . '/db/poche.sqlite'); # if you are using sqlite, where the database file is located
|
|
|
|
|
|
|
|
# only for postgres & mysql
|
|
|
|
define ('STORAGE_SERVER', 'localhost');
|
|
|
|
define ('STORAGE_DB', 'poche');
|
|
|
|
define ('STORAGE_USER', 'poche');
|
|
|
|
define ('STORAGE_PASSWORD', 'poche');
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
# Do not trespass unless you know what you are doing
|
|
|
|
#################################################################################
|
|
|
|
|
2013-10-07 06:47:13 -04:00
|
|
|
// Change this if not using the standart port for SSL - i.e you server is behind sslh
|
|
|
|
define ('SSL_PORT', 443);
|
|
|
|
|
2013-09-20 04:21:39 -04:00
|
|
|
define ('MODE_DEMO', FALSE);
|
2013-09-21 08:18:28 -04:00
|
|
|
define ('DEBUG_POCHE', FALSE);
|
2013-09-20 04:21:39 -04:00
|
|
|
define ('DOWNLOAD_PICTURES', FALSE);
|
|
|
|
define ('CONVERT_LINKS_FOOTNOTES', FALSE);
|
|
|
|
define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
|
|
|
|
define ('SHARE_TWITTER', TRUE);
|
|
|
|
define ('SHARE_MAIL', TRUE);
|
|
|
|
define ('SHARE_SHAARLI', FALSE);
|
|
|
|
define ('SHAARLI_URL', 'http://myshaarliurl.com');
|
|
|
|
define ('FLATTR', TRUE);
|
|
|
|
define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
|
|
|
|
define ('NOT_FLATTRABLE', '0');
|
|
|
|
define ('FLATTRABLE', '1');
|
|
|
|
define ('FLATTRED', '2');
|
|
|
|
define ('ABS_PATH', 'assets/');
|
|
|
|
|
2014-02-12 15:59:02 -05:00
|
|
|
define ('DEFAULT_THEME', 'baggy');
|
2013-09-20 04:21:39 -04:00
|
|
|
|
|
|
|
define ('THEME', ROOT . '/themes');
|
|
|
|
define ('LOCALE', ROOT . '/locale');
|
|
|
|
define ('CACHE', ROOT . '/cache');
|
|
|
|
|
|
|
|
define ('PAGINATION', '10');
|
|
|
|
|
2014-04-02 13:55:19 -04:00
|
|
|
//limit for download of articles during import
|
|
|
|
define ('IMPORT_LIMIT', 5);
|
|
|
|
//delay between downloads (in sec)
|
|
|
|
define ('IMPORT_DELAY', 5);
|
|
|
|
|