Add a default config_local.php.
This commit is contained in:
parent
8cfddc0d11
commit
34ace66580
24
config_local.php.example
Normal file
24
config_local.php.example
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
if (!isset($config))
|
||||||
|
$config = array();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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'] = './';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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'] = "0";
|
||||||
|
?>
|
Loading…
Reference in a new issue