mirror of
https://github.com/YunoHost-Apps/freshrss_ynh.git
synced 2024-09-03 18:36:33 +02:00
22 lines
691 B
PHP
Executable file
22 lines
691 B
PHP
Executable file
<?php
|
|
define('FRESHRSS_VERSION', '0.7.3');
|
|
define('FRESHRSS_WEBSITE', 'http://freshrss.org');
|
|
|
|
// PHP text output compression http://php.net/ob_gzhandler (better to do it at Web server level)
|
|
define('PHP_COMPRESSION', false);
|
|
|
|
// Constantes de chemins
|
|
define('FRESHRSS_PATH', dirname(__FILE__));
|
|
|
|
define('PUBLIC_PATH', FRESHRSS_PATH . '/p');
|
|
define('INDEX_PATH', PUBLIC_PATH . '/i');
|
|
define('PUBLIC_RELATIVE', '..');
|
|
|
|
define('DATA_PATH', FRESHRSS_PATH . '/data');
|
|
define('LOG_PATH', DATA_PATH . '/log');
|
|
define('CACHE_PATH', DATA_PATH . '/cache');
|
|
|
|
define('LIB_PATH', FRESHRSS_PATH . '/lib');
|
|
define('APP_PATH', FRESHRSS_PATH . '/app');
|
|
|
|
define('TMP_PATH', sys_get_temp_dir());
|