-
Notifications
You must be signed in to change notification settings - Fork 5
/
conf_default.php
executable file
·46 lines (37 loc) · 1.74 KB
/
conf_default.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
# Path to PhantomJS
$conf['phantomjs_bin'] = "/opt/phantomjs/bin/phantomjs";
$conf['debug'] = 0;
# IMPORTANT
# Do not verify SSL peers. I am setting this to false since for most of my remote
# nodes I use self-signed certificates. This does expose me to MITM (man in the middle attack)
# however I am willing to accept that risk. Set this to true if you want to make verify
# peer certs
$conf['ssl_peer_verify'] = false;
# Try to detect CDNs used
$conf['cdn_detection'] = true;
# These are the headers that can be used in the URL test. If you are finding you are using the
# the same headers all the time you can set them here to default to a value
# For example Accept-Language:es || User-Agent:Mozilla
$conf['arbitrary_headers'] = "";
$conf['allowed_dns_query_types'] = array (
"A",
"AAAA",
"CNAME",
"MX",
"SOA",
"TXT",
);
# Should ping/mtr be enabled
$conf['pingmtr_enabled'] = true;
$conf['ping_bin'] = "/bin/ping";
$conf['ping6_bin'] = "/bin/ping6";
$conf['mtr_bin'] = "/usr/bin/mtr";
$conf['nmap_bin'] = "/usr/bin/nmap";
$conf['jquery_js_path'] = "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.min.js";
$conf['jqueryui_js_path'] = "https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js";
$conf['jqueryui_css_path'] = "https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/themes/flick/jquery-ui.min.css";
$conf['jquery_tablesorter'] = "https://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.25.7/js/jquery.tablesorter.min.js";
# Read README on what are remotes
#$conf['remotes'][] = array("name" => "US", "provider" => "http_get", "base_url" => "http://myurl.usa/fantomtest/");
#$conf['remotes'][] = array("name" => "Europe", "provider" => "http_get", "base_url" => "http://myurl.eu/fantomtest/");