2016-12-22 03:42:11 +01:00
|
|
|
<?php
|
|
|
|
if (!isset($config))
|
|
|
|
$config = array();
|
2016-12-22 14:19:29 +01:00
|
|
|
|
2021-08-04 12:23:13 +02:00
|
|
|
/*
|
|
|
|
***************************************************
|
|
|
|
* Please read config_default.php for all possible
|
|
|
|
* configuration items
|
|
|
|
***************************************************
|
|
|
|
*/
|
|
|
|
|
2016-12-22 03:42:11 +01:00
|
|
|
/*
|
|
|
|
* The directory containing calibre's metadata.db file, with sub-directories
|
|
|
|
* containing all the formats.
|
|
|
|
* BEWARE : it has to end with a /
|
|
|
|
*/
|
2021-11-20 18:28:33 +01:00
|
|
|
$config['calibre_directory'] = '__DATADIR__';
|
2021-08-04 13:31:31 +02:00
|
|
|
|
2021-11-20 18:28:33 +01:00
|
|
|
/*
|
|
|
|
* $config['calibre_internal_directory'] = '/Calibre/';
|
|
|
|
*
|
|
|
|
* $config['cops_full_url'] = '__DOMAIN____PATH__/ ';
|
|
|
|
*
|
|
|
|
* $config['cops_x_accel_redirect'] = "X-Accel-Redirect";
|
|
|
|
*/
|
2016-12-22 03:42:11 +01:00
|
|
|
/*
|
|
|
|
* Catalog's title
|
|
|
|
*/
|
|
|
|
$config['cops_title_default'] = "COPS";
|
2021-08-04 12:23:13 +02:00
|
|
|
|
2016-12-22 03:42:11 +01:00
|
|
|
/*
|
|
|
|
* use URL rewriting for downloading of ebook in HTML catalog
|
|
|
|
* See README for more information
|
|
|
|
* 1 : enable
|
|
|
|
* 0 : disable
|
|
|
|
*/
|
2021-08-04 13:31:31 +02:00
|
|
|
$config['cops_use_url_rewriting'] = "1";
|
2016-12-22 03:46:06 +01:00
|
|
|
|
2021-08-04 12:23:13 +02:00
|
|
|
/*
|
|
|
|
* 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__';
|
2016-12-22 03:46:06 +01:00
|
|
|
|
2021-08-04 12:23:13 +02:00
|
|
|
/*
|
|
|
|
* Default timezone
|
|
|
|
* Check following link for other timezones :
|
|
|
|
* http://www.php.net/manual/en/timezones.php
|
|
|
|
*/
|
|
|
|
$config['default_timezone'] = '__TIMEZONE__';
|