diff --git a/stats.php b/stats.php
deleted file mode 100644
index 67d04c10a6ee6f3675bf244aa00ffb9d302bbfba..0000000000000000000000000000000000000000
--- a/stats.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-//return the test server stats
-
-
-//NOTE: only post is allowed!!
-
-$config = require './bootstrap.php';
-
-#requires some helper function to e.g. create / delete dirs, handle output...
-require_once './constants.php';
-
-$response = array(
-    "workingDirFullPath" => $config["workingDirFullPath"],
-    "hardGlobalTimeoutInMs" => $config["hardGlobalTimeoutInMs"],
-    "maxParallelTests" => $config["maxParallelTests"],
-    "maxNumberOfTestsWithOneRequest" => $config["maxNumberOfTestsWithOneRequest"],
-    //"runner" => $config["runner"], //maybe not needed
-    "maxLinesToRead" => $config["maxLinesToRead"],
-    "maxErrLinesToRead" => $config["maxErrLinesToRead"],
-    "maxLinesToWrite" => $config["maxLinesToWrite"],
-    "showTestRunnerDebugOutput" => $config["showTestRunnerDebugOutput"],
-
-    "dbServer" => $config["dbServer"],
-    "dbName" => $config["dbName"],
-
-    "useConfigFromDb" => $config["useConfigFromDb"],
-    "dbConfigServer" => $config["dbConfigServer"],
-    "dbConfigName" => $config["dbConfigName"],
-
-    "environmentVars" => $config["environmentVars"],
-);
-
-
-if ($isDebug) {
-    debug(json_encode($respone));
-}
-
-output($status_code_Ok, "", $response);