1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cops_ynh.git synced 2024-09-03 18:25:57 +02:00
cops_ynh/conf/config_local.php

51 lines
1.3 KiB
PHP
Raw Normal View History

<?php
if (!isset($config))
$config = array();
2021-08-04 12:23:13 +02:00
/*
***************************************************
* 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 /
*/
2021-12-09 16:07:56 +01:00
$config['calibre_directory'] = '__CALIBRE_DIR__/';
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";
*/
/*
* Catalog's title
*/
$config['cops_title_default'] = "COPS";
2021-08-04 12:23:13 +02: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__';