forked from HostSuki/StatusPage
-
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) · 736 Bytes
/
config.php
File metadata and controls
29 lines (20 loc) · 736 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
<?php
//UptimeRobot API Key
$apikey = "Your-API-Key";
//Name to display in nav bar and page title
$websitename = "My Uptime Report";
//How often the page should refresh
$pagerefreshtime = "05:00";
//On the status page what percentage is what color
$percentGreen = 99;
$percentYellow = 96;
//curl timeout
$timeout = 5;
//Uptime percentage for following days
$historyDays = array(1, 7, 30, 360);
//Display names for the uptime percentage of the previous days
$historyDaysNames = array("Past 24 Hours", "Past Week", "Past Month", "Past Year");
//checks to exclude from the status page. This info can be found in the UptimeRobot URL for each check
//$excludedchecks = array("776396792", "776396743");
$excludedchecks = array();
?>