KLanding/configs_services.php

68 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2015-07-02 19:33:06 +01:00
<?php include 'config.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();
/********
DO NOT EDIT THESE CONFIG LINES.
********/
# You may edit these configs.
$configs['server_ip'] = "$base"; // The Servers URL or IP to check.
# For services simply add new lines with the Name and port number.
2015-07-08 11:17:08 +01:00
if ($torrentvisible > "0") {
$configs['services']["$torrentname"] = $torrentport;
}
2015-07-17 14:26:02 +01:00
2015-07-08 11:17:08 +01:00
if ($sabvisible > "0") {
2015-07-17 12:31:52 +01:00
$configs['services']["$sabname"] = $sabport;
2015-07-08 11:17:08 +01:00
}
2015-07-17 14:26:02 +01:00
2015-07-08 11:17:08 +01:00
if ($sickvisible > "0") {
$configs['services']["$sickname"] = $sickport;
}
2015-07-17 14:26:02 +01:00
2015-07-08 11:17:08 +01:00
if ($cpadultsvisible > "0") {
2015-07-08 11:58:49 +01:00
$configs['services']["$couchname"] = $cpadults;
2015-07-08 11:17:08 +01:00
}
2015-07-17 14:26:02 +01:00
2015-07-08 11:17:08 +01:00
if ($cpkidsvisible > "0") {
2015-07-17 14:26:02 +01:00
$configs['services']["$cpkidsname"] = $cpkids;
2015-07-08 11:17:08 +01:00
}
2015-07-17 14:26:02 +01:00
2016-02-05 13:46:30 +00:00
if ($headvisible > "0") {
$configs['services']["$headname"] = $headport;
}
2015-07-08 11:17:08 +01:00
if ($ftpvisible > "0") {
2015-07-17 14:26:02 +01:00
$configs['services']["$ftpname"] = $ftpport;
2015-07-08 11:17:08 +01:00
}
2015-07-17 14:26:02 +01:00
2015-07-08 11:17:08 +01:00
if ($madsonicvisible > "0") {
2015-07-17 14:26:02 +01:00
$configs['services']["$madsonicname"] = $madsonicport;
2015-07-08 11:17:08 +01:00
}
2015-07-17 14:26:02 +01:00
2015-07-08 11:17:08 +01:00
if ($plexvisible > "0") {
2015-07-17 14:26:02 +01:00
$configs['services']["$plexname"] = $plexport;
2015-07-08 11:17:08 +01:00
}
2015-07-17 14:26:02 +01:00
if ($squeezevisible > "0") {
$configs['services']["$squeezename"] = $squeezeport;
}
2015-07-02 19:33:06 +01:00
?>