-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.53 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>LAMP++</title>
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<center>
<h1>LAMP<sup>++</sup> deployed by SlipStream</h1>
<div class="instructions">
This test page allows you to issue read and write requests to the Apache/PHP layer
which in turn gets persisted in the MongoDB layer. The read request retrieve routing
information, such that you can check correct routing as elements of the LAMP stack
are disabled and re-enabled. For this simply SSH into the corresponding machine and
stop services.
</div>
</center>
<div id="buttons">
<button id="read">Read</button>
<button id="write">Write</button>
</div>
<div id="results">
<div id="db"></div>
<ul id="writers"></ul>
</div>
<center>
<img src="http://scienceblogs.com/gregladen/files/2013/02/Linux.jpg" />
<img src="http://www.syscrunch.com/blog/wp-content/uploads/2013/04/apache-server.jpg" />
<img src="https://upload.wikimedia.org/wikipedia/en/4/45/MongoDB-Logo.svg" />
<img src="http://brianlasher.com/wp-content/uploads/2011/09/2000px-php-logo-svg_.png" />
</center>
<!-- <script src="http://code.jquery.com/jquery-1.11.1.js" type="text/javascript"></script>
<script src="out/toto.js" type="text/javascript"></script> -->
<script src="out/goog/base.js" type="text/javascript"></script>
<script src="lamp.js" type="text/javascript"></script>
<script type="text/javascript">goog.require("lamp.core");</script>
</body>
</html>