forked from seblucas/cops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig_local.php.example
35 lines (30 loc) · 939 Bytes
/
config_local.php.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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'] = './';
/*
* 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";
/*
* Specify the ignored formats that will never display in COPS
*/
$config['cops_ignored_formats'] = array('ORIGINAL_EPUB', 'ORIGINAL_AZW3');