Add v0.0.1
This commit is contained in:
parent
ecca561693
commit
e47631b1d8
12 changed files with 1308 additions and 0 deletions
34
config_default.php
Normal file
34
config_default.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* COPS (Calibre OPDS PHP Server) class file
|
||||
*
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author Sébastien Lucas <sebastien@slucas.fr>
|
||||
*/
|
||||
|
||||
$config = array();
|
||||
|
||||
/*
|
||||
* The directory containing calibre's metadata.db file, with sub-directories
|
||||
* containing all the formats.
|
||||
* If this directory starts with a / EPUB download will only work with Nginx
|
||||
* and if the calibre_internal_directory is set
|
||||
*/
|
||||
$config['calibre_directory'] = './';
|
||||
|
||||
/*
|
||||
* The internal directory set in nginx config file
|
||||
*/
|
||||
$config['calibre_internal_directory'] = '/Calibre/';
|
||||
|
||||
/*
|
||||
* Number of books
|
||||
*/
|
||||
$config['cops_recentbooks_limit'] = '50';
|
||||
|
||||
/*
|
||||
* The internal directory set in nginx config file
|
||||
*/
|
||||
$config['cops_title_default'] = "Sebastien's COPS";
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue