-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (110 loc) · 2.97 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
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
<!DOCTYPE html>
<html>
<head>
<title>Hosts Page</title>
<style>
table {
width: 50%;
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
h1 {
text-align: center;
font-size: 72px;
font-weight: bold;
text-transform: uppercase;
}
</style>
</head>
<body>
<h1>LOCAL INDEX.HTML</h1>
<table>
<tr>
<th>Host Name</th>
<th>Link</th>
</tr>
<tr>
<td>haproxy</td>
<td><a href="http://localhost:8100">Load Balancer</a></td>
</tr>
<tr>
<td>haproxy</td>
<td><a href="http://localhost:8101">Load Balancer Stats</a></td>
</tr>
<tr>
<td>tuspdm201</td>
<td><a href="http://localhost:8108">tuspdm201</a></td>
</tr>
<tr>
<td>tuspdm202</td>
<td><a href="http://localhost:8109">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm203</td>
<td><a href="http://localhost:8110">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm204</td>
<td><a href="http://localhost:8111">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm205</td>
<td><a href="http://localhost:8112">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm206</td>
<td><a href="http://localhost:8113">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm207</td>
<td><a href="http://localhost:8114">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm208</td>
<td><a href="http://localhost:8115">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm209</td>
<td><a href="http://localhost:8116">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm210</td>
<td><a href="http://localhost:8117">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm211</td>
<td><a href="http://localhost:8118">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm212</td>
<td><a href="http://localhost:8119">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm304</td>
<td><a href="http://localhost:8125">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm305</td>
<td><a href="http://localhost:8126">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm401</td>
<td><a href="http://localhost:8147">tuspdm202</a></td>
</tr>
<tr>
<td>tuspdm402</td>
<td><a href="http://localhost:8148">tuspdm202</a></td>
</tr>
<!-- Add more rows as needed -->
</table>
</body>
</html>