mirror of
https://github.com/YunoHost-Apps/cops_ynh.git
synced 2024-09-03 18:25:57 +02:00
50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
if (!isset($config))
|
|
$config = array();
|
|
|
|
/*
|
|
***************************************************
|
|
* Please read config_default.php for all possible
|
|
* configuration items
|
|
***************************************************
|
|
*/
|
|
|
|
/*
|
|
* The directory containing calibre's metadata.db file, with sub-directories
|
|
* containing all the formats.
|
|
* BEWARE : it has to end with a /
|
|
*/
|
|
$config['calibre_directory'] = '__CALIBRE_DIR__/';
|
|
|
|
|
|
$config['calibre_internal_directory'] = '/Calibre/';
|
|
|
|
$config['cops_full_url'] = '__DOMAIN____PATH__/ ';
|
|
|
|
$config['cops_x_accel_redirect'] = "X-Accel-Redirect";
|
|
|
|
/*
|
|
* Catalog's title
|
|
*/
|
|
$config['cops_title_default'] = "COPS";
|
|
|
|
/*
|
|
* use URL rewriting for downloading of ebook in HTML catalog
|
|
* See README for more information
|
|
* 1 : enable
|
|
* 0 : disable
|
|
*/
|
|
$config['cops_use_url_rewriting'] = "1";
|
|
|
|
/*
|
|
* Set language code to force a language (see lang/ directory for available languages).
|
|
* When empty it will auto detect the language.
|
|
*/
|
|
$config['cops_language'] = '__LANGUAGE__';
|
|
|
|
/*
|
|
* Default timezone
|
|
* Check following link for other timezones :
|
|
* http://www.php.net/manual/en/timezones.php
|
|
*/
|
|
$config['default_timezone'] = '__TIMEZONE__';
|