-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.php
139 lines (136 loc) · 3.14 KB
/
index.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!-- DO NOT MODIFY THIS FILE IT IS CREATED EACH TIME THE INSTANCE IS STARTED -->
<!DOCTYPE html>
<html>
<head>
<title>Coming soon!</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
body {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 14px;
text-align: center;
padding: 50px;
}
div img#logo {
margin: 0 auto 40px auto;
float: none;
}
.e {
background-color: #ccf;
width: 300px;
font-weight: bold;
}
.v {
background-color: #ddd;
max-width: 300px;
overflow-x: auto;
word-wrap: break-word;
}
.h {
background-color: #99c;
font-weight: bold;
}
.center table {
margin: 1em auto;
text-align: left;
}
table {
border-collapse: collapse;
border: 0;
width: 80% !important;
margin: auto;
}
td, th {
border: 1px solid #666;
vertical-align: baseline;
padding: 4px 5px;
}
img {
float: right;
border: 0;
}
.h h1 {
font-size: 150%;
}
</style>
<?php
if (getenv('NODE_ENVIRONMENT')) {
$node_env = getenv('NODE_ENVIRONMENT');
} else {
$node_env = 'NOT SET';
} ?>
</head>
<body>
<?= "<!-- NODE_ENVIRONMENT=". getenv('NODE_ENVIRONMENT') ." -->"; ?>
<div class="container">
<img id="logo" src="logo.png" width="200" />
<h1><?= "Hello ".((getenv("NAME"))? $name:"World")."!"; ?></h1>
<div class="row">
<div class="mx-auto w-100 p-3 text-white text-center">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<th colspan="2" class="text-left">SYSTEM VARIABLES</th>
</tr>
<tr>
<td class="text-right">HOSTNAME</td>
<td class="text-left"><?= getenv('HOSTNAME') ?></td>
</tr>
<?php if ($node_env == 'dev') { ?>
<?php if (getenv('MYSQL_PORT')) {?>
<tr>
<td class="text-right">MYSQL_PORT</td>
<td class="text-left"><?= getenv('MYSQL_PORT'); ?></td>
</tr>
<?php } ?>
<tr>
<td class="text-right">NODE_ENVIRONMENT</td>
<td class="text-left"><?= $node_env ?></td>
</tr>
<?php } ?>
<tr>
<td class="text-right">SMTP_HOST</td>
<td class="text-left"><?= getenv('SMTP_HOST'); ?></td>
</tr>
<tr>
<td class="text-right">max_execution_time</td>
<td class="text-left"><?= ini_get('max_execution_time'); ?></td>
</tr>
<tr>
<td class="text-right">memory_limit</td>
<td class="text-left"><?= ini_get('memory_limit'); ?></td>
</tr>
<tr>
<td class="text-right">upload_max_filesize</td>
<td class="text-left"><?= ini_get('upload_max_filesize'); ?></td>
</tr>
<tr>
<td class="text-right">post_max_size</td>
<td class="text-left"><?= ini_get('post_max_size'); ?></td>
</tr>
<tr>
<td class="text-right">max_input_time</td>
<td class="text-left"><?= ini_get('max_input_time'); ?></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div style="clear: both;"></div>
<?php
if (getenv("NODE_ENVIRONMENT") == 'dev') {
ob_start();
phpinfo();
$pinfo = preg_replace( '%^.*<body>(.*)</body>.*$%ms','$1', ob_get_contents());
ob_end_clean();
echo $pinfo;
} else {
echo '<a href="https://github.com/htmlgraphic/Apache">GitHub</a>';
}
?>
</div>
</body>
</html>