41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
/*
|
|
* Script: Server Status
|
|
* Author: Martin Dixon
|
|
* From: Tutorial-Resource.com
|
|
* URL: www.tutorial-resource.com
|
|
* Version: 1.0
|
|
* License: Free
|
|
*/
|
|
/********
|
|
DO NOT EDIT THESE CONFIG LINES.
|
|
*/
|
|
$configs = array();
|
|
$configs['services'] = array();
|
|
$configs['servicesKloud'] = array();
|
|
$configs['servicesSpot'] = array();
|
|
$configs['servicesKris'] = array();
|
|
|
|
/********
|
|
DO NOT EDIT THESE CONFIG LINES.
|
|
********/
|
|
|
|
|
|
|
|
# You may edit these configs.
|
|
$configs['server_ip'] = "home.k-world.me.uk"; // The Servers URL or IP to check.
|
|
$configs['server_ip2'] = "duly.ml"; // The Servers URL or IP to check.
|
|
$configs['server_ip3'] = "gowing.ga"; // The Servers URL or IP to check.
|
|
$configs['server_ip4'] = "smifftser.youdontcare.com"; // The Servers URL or IP to check.
|
|
|
|
|
|
|
|
# For services simply add new lines with the Name and port number.
|
|
$configs['servicesKloud']['<a href="http://www.duly.ml" target="_blank">Duly Server</a>'] = 80;
|
|
#$configs['servicesSpot']['<a href="http://www.gowing.ga" target="_blank">Darren Server</a>'] = 80;
|
|
$configs['services']['<a href="http://home.k-world.me.uk" target="_blank">Karl Server</a>'] = 80;
|
|
$configs['servicesKris']['<a href="http://smiffster.tk" target="_blank">Kris Server</a>'] = 80;
|
|
|
|
|
|
|
|
?>
|