-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
29 lines (20 loc) · 810 Bytes
/
config.php
File metadata and controls
29 lines (20 loc) · 810 Bytes
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
<?php
$config['db']['host'] = 'db';
$config['db']['port'] = 3306;
$config['db']['username'] = 'xenforo';
$config['db']['password'] = 'xfdev';
$config['db']['dbname'] = 'xf2';
$config['db']['socket'] = null;
$config['fullUnicode'] = true;
//$config['enableApi'] = false;
$config['enableAddOnArchiveInstaller'] = true;
$config['debug'] = true;
$config['development']['enabled'] = true;
$config['development']['fullJs'] = true;
//$config['development']['defaultAddOn'] = 'Inforge/AddOn';
$config['designer']['enabled'] = true;
//$config['designer']['basePath'] = 'src/styles';
$config['enableMail'] = false;
//$config['cookie']['prefix'] = 'prefix_';
//$config['chmodWritableValue'] = 0666;
//$config['development']['closureCompilerPath'] = \XF::getRootDirectory() . '/development/closure-compiler.jar';