-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.php
More file actions
53 lines (46 loc) · 1.67 KB
/
Copy pathconfig.php
File metadata and controls
53 lines (46 loc) · 1.67 KB
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
49
50
51
52
<?php
/*
|--------------------------------------------------------------------
| DATABASE CONFIGURATION
|--------------------------------------------------------------------
|
| Please specify the database connection settings below. Currently
| supported databases are SQL Server (2005, 2008, 2012, 2014) and
| MySQL (5.x).
*/
define('DB_DRIVER', 'mysql'); // sqlsrv or mysql
define('DB_HOSTNAME', 'localhost');
define('DB_DATABASE', 'testrail');
define('DB_USERNAME', 'testrail');
define('DB_PASSWORD', 'newpassword');
/*
|--------------------------------------------------------------------
| DIAGNOSTICS
|--------------------------------------------------------------------
|
| The following settings configure the logging and error behavior
| of TestRail.
*/
define('LOG_PATH', '/var/www/html/testrail/logs/');
/*
|--------------------------------------------------------------------
| OPTIMIZATIONS
|--------------------------------------------------------------------
|
| You can choose whether to optimize the delivery of style sheet and
| javascript files and the handling of language files. The following
| optimization settings are available:
|
| DEPLOY_OPTIMIZE_LANG: If enabled, TestRail uses a single combined
| language file named 'all_lang' instead of
| multiple language files.
|
| DEPLOY_OPTIMIZE_CSS: If enabled, a single combined style sheet
| is served to the clients.
|
| DEPLOY_OPTIMIZE_JS: If enabled, a single combined javascript
| file is served to the clients.
*/
define('DEPLOY_OPTIMIZE_LANG', true);
define('DEPLOY_OPTIMIZE_CSS', true);
define('DEPLOY_OPTIMIZE_JS', true);