-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
146 lines (124 loc) · 5.37 KB
/
Copy pathservices.html
File metadata and controls
146 lines (124 loc) · 5.37 KB
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
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<title>GRP</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<style>
#customers {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#customers td,
#customers th {
border: 1px solid #ddd;
padding: 8px;
}
#customers tr:nth-child(even) {
background-color: #f2f2f2;
}
#customers th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #4CAF50;
color: white;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-success">GRP</h1>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table id="customers">
<tr>
<th rowspan="2" class="text-center">Container</th>
<th colspan="3" class="text-center">Port</th>
</tr>
<tr>
<th class="text-center">Localhost</th>
</tr>
<tr>
<td>1. Eureka</td>
<td class="text-center">
<a href="http://localhost:6001/" target="_blank" data-toggle="tooltip" title="http://localhost:6001/">6001</a>
</td>
</tr>
<tr>
<td>2. Config</td>
<td class="text-center">6011</td>
</tr>
<tr>
<td>3. Admin</td>
<td class="text-center">
<a href="http://localhost:6021/#/wallboard" target="_blank" data-toggle="tooltip" title="http://localhost:6021/#/wallboard">6021</a>
</td>
</tr>
<tr>
<td>4. Zuul</td>
<td class="text-center">6031</td>
</tr>
<tr>
<td>5. Zipkin</td>
<td colspan="3" class="text-center"><a href="http://localhost:6041/zipkin/" target="_blank" data-toggle="tooltip" title="http://localhost:6041/zipkin/">6041</a></td>
</tr>
<tr>
<td>6. Hystrix</td>
<td colspan="3" class="text-center"><a href="http://localhost:6050/hystrix/" target="_blank" data-toggle="tooltip" title="http://localhost:6050/hystrix/">6050</a></td>
</tr>
<tr>
<td>8. CmnMaster</td>
<td class="text-center">
<a href="http://localhost:9001/swagger-ui.html" target="_blank" data-toggle="tooltip" title="http://localhost:9001/swagger-ui.html">9001</a>
</td>
</tr>
<tr>
<td>9. SecMaster</td>
<td class="text-center">
<a href="http://localhost:9011/swagger-ui.html" target="_blank" data-toggle="tooltip" title="http://localhost:9011/swagger-ui.html">9011</a>
</td>
</tr>
<tr>
<td>10. ComAcq</td>
<td class="text-center">
<a href="http://localhost:9021/swagger-ui.html" target="_blank" data-toggle="tooltip" title="http://localhost:9021/swagger-ui.html">9021</a>
</td>
</tr>
<tr>
<td>11. PrcApp</td>
<td class="text-center">
<a href="http://localhost:9031/swagger-ui.html" target="_blank" data-toggle="tooltip" title="http://localhost:9031/swagger-ui.html">9031</a>
</td>
</tr>
<tr>
<td>12. PrcMaster</td>
<td class="text-center">
<a href="http://localhost:9032/swagger-ui.html" target="_blank" data-toggle="tooltip" title="http://localhost:9032/swagger-ui.html">9032</a>
</td>
</tr>
<tr>
<td>13. PurchaseReq</td>
<td class="text-center">
<a href="http://localhost:9033/swagger-ui.html" target="_blank" data-toggle="tooltip" title="http://localhost:9033/swagger-ui.html">9033</a>
</td>
</tr>
</table>
</div>
</div>
<br/>
</div>
</body>
</html>