devilbox/www/htdocs/index.php

226 lines
6.8 KiB
PHP
Raw Normal View History

2016-10-09 16:47:49 +00:00
<?php require '../config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<link href="/assets/css/custom.css" rel="stylesheet">
<title>DevilBox</title>
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand" href="#">DevilBox</span>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="/vhosts.php">Virtual Hosts</a></li>
<li><a href="/databases.php">Databases</a></li>
<li><a href="/php.php">PHP</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<h1>DevilBox Overview</h1>
<br/>
<br/>
<div class="row">
<div class="col-md-12">
<table class="table table-striped">
<tbody>
<tr></tr>
<!--
Docker Images
-->
<tr>
<th colspan="2"><h3>Docker Images</h3></th>
</tr>
<tr>
<th>Webserver</th>
<td><?php echo getHttpVersion();?>&nbsp;&nbsp;&nbsp;(IP: <?php echo $HTTPD_HOST_ADDR;?>)</td>
</tr>
<tr>
<th>PHP</th>
<td><?php echo getPHPVersion(); ?>&nbsp;&nbsp;&nbsp;(IP: <?php echo $PHP_HOST_ADDR;?>)</td>
</tr>
<tr>
<th>MySQL Server</th>
<td><?php echo getMySQLVersion();?>&nbsp;&nbsp;&nbsp;(IP: <?php echo $MYSQL_HOST_ADDR;?>)</td>
</tr>
<!--
Docker Host (your computer)
-->
<tr>
<th colspan="2"><h3>Host computer</h3></th>
</tr>
<tr>
<th>MySQL datadir</th>
<td><?php echo $ENV['HOST_PATH_TO_MYSQL_DATADIR'];?></td>
</tr>
<tr>
<th>MySQL socket</th>
<td>./run/mysql/mysql.sock</td>
</tr>
<tr>
<th>WWW Document Roots</th>
<td><?php echo $ENV['HOST_PATH_TO_WWW_DOCROOTS'];?></td>
</tr>
<tr>
<th>Log dir</th>
<td>./log</td>
</tr>
<tr></tr>
<!-- ############################################################ -->
<!-- HTTPD Docker -->
<!-- ############################################################ -->
<tr>
<th colspan="2"><h3>[docker] HTTPD</h3></th>
</tr>
<tr>
<td colspan="2">--</td>
</tr>
<!-- ############################################################ -->
<!-- PHP Docker -->
<!-- ############################################################ -->
<tr>
<th colspan="2"><h3>[docker] PHP</h3></th>
</tr>
<tr>
<th>MySQL Remote Port forwarded to PHP Docker?</th>
<td><?php echo ($ENV['FORWARD_MYSQL_PORT_TO_LOCALHOST']) ? 'To: 127.0.0.1:'.$ENV['MYSQL_LOCAL_PORT'] : 'No'; ?></td>
</tr>
<tr>
<th>MySQL Remote Socket mounted on PHP Docker?</th>
<td>
<?php
if ($ENV['MOUNT_MYSQL_SOCKET_TO_LOCALDISK']) {
if (file_exists($ENV['MYSQL_SOCKET_PATH'])) {
echo 'To: '.$ENV['MYSQL_SOCKET_PATH'];
} else {
echo 'To: '.$ENV['MYSQL_SOCKET_PATH']. ' - [ERROR] no such file';
}
} else {
echo 'No';
}
?>
</td>
</tr>
<tr>
<th>PHP-MySQL connection test: localhost</th>
<td><?php echo testMySQLLocalhost(); ?></td>
</tr>
<tr>
<th>PHP-MySQL connection test: 127.0.0.1</th>
<td><?php echo testMySQLLocalIp(); ?></td>
</tr>
<tr>
<th>PHP-MySQL connection test: <?php echo $MYSQL_HOST_ADDR;?></th>
<td><?php echo testMySQLRemotelIp(); ?></td>
</tr>
<tr>
<th>PHP custom run-time options</th>
<td>
<pre>
<?php /* TODO: compare with ini_get() */?>
<?php if ($ENV['PHP_XDEBUG_ENABLE'] == 1): ?>
xdebug.remote_enable = <?php echo $ENV['PHP_XDEBUG_ENABLE']."\n";?>
xdebug.remote_port = <?php echo $ENV['PHP_XDEBUG_REMOTE_PORT']."\n";?>
xdebug.remote_host = <?php echo $ENV['PHP_XDEBUG_REMOTE_HOST']."\n";?>
<?php endif; ?>
max_execution_time = <?php echo $ENV['PHP_MAX_EXECUTION_TIME']."\n";?>
max_input_time = <?php echo $ENV['PHP_MAX_INPUT_TIME']."\n";?>
memory_limit = <?php echo $ENV['PHP_MEMORY_LIMIT']."\n";?>
post_max_size = <?php echo $ENV['PHP_POST_MAX_SIZE']."\n";?>
upload_max_filesize = <?php echo $ENV['PHP_UPLOAD_MAX_FILESIZE']."\n";?>
max_input_vars = <?php echo $ENV['PHP_MAX_INPUT_VARS']."\n";?>
error_reporting = <?php echo $ENV['PHP_ERROR_REPORTING']."\n";?>
display_errors = <?php echo $ENV['PHP_DISPLAY_ERRORS']."\n";?>
track_errors = <?php echo $ENV['PHP_TRACK_ERRORS'];?>
</pre>
</td>
</tr>
<tr></tr>
<!-- ############################################################ -->
<!-- MySQL Docker -->
<!-- ############################################################ -->
<tr>
<th colspan="2"><h3>[docker] MySQL</h3></th>
</tr>
<tr>
<th>MySQL root password</th>
<td><?php echo $MYSQL_ROOT_PASS; ?></td>
</tr>
<tr>
<th>MySQL socket</th>
<td><?php echo getMySQLConfig('socket'); ?></td>
</tr>
<tr>
<th>MySQL custom run-time options</th>
<td>
<pre>
general_log = <?php echo getMySQLConfig('general-log')."\n";?>
innodb_buffer_pool_size = <?php echo getMySQLConfig('innodb-buffer-pool-size')."\n";?>
join_buffer_size = <?php echo getMySQLConfig('join-buffer-size')."\n";?>
sort_buffer_size = <?php echo getMySQLConfig('sort-buffer-size')."\n";?>
read_rnd_buffer_size = <?php echo getMySQLConfig('read-rnd-buffer_size')."\n";?>
symbolic_links = <?php echo getMySQLConfig('symbolic-links')."\n";?>
sql_mode = <?php echo getMySQLConfig('sql-mode')."\n";?>
</pre>
</td>
</tr>
</tbody>
</table>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
<?php require '../include/footer.php'; ?>
<script>
// self executing function here
(function() {
// your page initialization code here
// the DOM will be available here
})();
</script>
2016-10-09 16:47:49 +00:00
</body>
</html>