forked from EqualifyEverything/equalify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
32 lines (27 loc) · 1.05 KB
/
config.php
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
<?php
/**************!!EQUALIFY IS FOR EVERYONE!!***************
* These configs are used to setup Equalify's database
* and execution.
*
* By default, configuration that works for ddev is added.
* Find out more about setup up Equalify on ddev here:
* https://github.com/bbertucc/equalify/issues/40
**********************************************************/
// Configure database.
$GLOBALS["DB_HOST"] = "db";
$GLOBALS["DB_USERNAME"] = "equalify";
$GLOBALS["DB_PASSWORD"] = "equalify";
$GLOBALS["DB_NAME"] = "equalify";
$GLOBALS["DB_PORT"] = "3306";
$GLOBALS["DB_SOCKET"] = "/var/run/mysqld/mysqld.sock";
// Configure PHP path, which you can find by running
//`which php` in a terminal.
$GLOBALS["PHP_PATH"] = "/usr/local/bin/php";
// Visit https://wave.webaim.org/api/ to get a WAVE key.
$GLOBALS["wave_key"] = "";
// Visit https://github.com/bbertucc/axe-equalify for more info.
$GLOBALS["axe_uri"] = "http://192.168.1.20:8081/?url=";
// Additional options.
$GLOBALS["page_limit"] = "2222";
$GLOBALS["scan_concurrency"] = "6";
$GLOBALS["scan_timeout"] = "33";