-
Notifications
You must be signed in to change notification settings - Fork 0
/
tine20.conf
49 lines (47 loc) · 1.35 KB
/
tine20.conf
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
37
38
39
40
41
42
43
44
45
46
47
48
<?php
// minimal configuration
return array(
// set 'count' equal zero to disable captcha, or set to number of invalid logins before request captcha.
'captcha' => array('count'=>0),
'database' => array(
'host' => 'ENTER DATABASE HOSTNAME',
'dbname' => 'ENTER DATABASE NAME',
'username' => 'ENTER DATABASE USERNAME',
'password' => 'ENTER DATABASE PASSWORD',
'adapter' => 'pdo_mysql',
'tableprefix' => 'tine20_',
),
'setupuser' => array(
'username' => 'SETUP USERNAME',
'password' => 'SETUP PASSWORD'
),
'caching' => array (
'active' => true,
'lifetime' => 3600,
'backend' => 'Redis',
'redis' => array (
'host' => 'redis',
'port' => 6379,
),
),
'logger' => array (
'active' => true,
'filename' => '/opt/tine20/tine20.log',
'priority' => 5,
),
'actionqueue' => array (
'active' => true,
'backend' => 'Redis',
'host' => 'redis',
'port' => 6379,
),
'session' => array (
'lifetime' => 86400,
'backend' => 'Redis',
'host' => 'redis',
'port' => 6379,
),
'tmpdir' => '/var/lib/tine20/tmp',
'filesdir' => '/var/lib/tine20/files',
'mapPanel' => 1
);