-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-local.php.dist
36 lines (33 loc) · 1.16 KB
/
config-local.php.dist
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
36
<?php
/**
* This file defines your local settings. You only need to define all the
* config options that are different than defined in the config.php.
* It is included (in the init.php) after the defaults are set so you
* can 'override' any option in here.
* This file is included in the distribution as 'config-local.php.dist'.
* Just rename it to 'config-local.php' to activate it.
*
* @version $Id: config-local.php.dist 123 2019-09-03 15:03:36Z munix9 $
*/
/**
* The DB DSN, as needed for PEAR::DB.
*
* @var string the DB connection parameters
*/
$config->dbDSN = 'mysqli://<account>:<password>@localhost/openTimetool';
/**
* This is the path to html2pdf, this application is needed
* when you want to export your timesheets to pdf.
*
* @var string the path to html2pdf
*/
$config->html2pdf = '/usr/local/bin/html2pdf $1 $2';
/**
* The various authentication parameters. This application can also
* use an authentication against an external source, this you can configure here.
* Please further down for more info ...
*/
$config->auth->method = 'DB';
$config->auth->url = $config->dbDSN;
$config->auth->digest = 'md5';
$config->auth->savePwd = true;