mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-30 22:02:02 +02:00
added load balance support and verbose level
This commit is contained in:
8
templates/panel.html
Normal file → Executable file
8
templates/panel.html
Normal file → Executable file
@@ -105,11 +105,12 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{range $alias, $httpRoutes := .HTTPRoutes.Iterator}}
|
||||
{{range $route := $httpRoutes}}
|
||||
{{range $alias, $pathPoolMap := .HTTPRoutes.Iterator}}
|
||||
{{range $path, $lbPool := $pathPoolMap.Iterator}}
|
||||
{{range $_, $route := $lbPool.Iterator}}
|
||||
<tr>
|
||||
<td>{{$alias}}</td>
|
||||
<td>{{$route.Path}}</td>
|
||||
<td>{{$path}}</td>
|
||||
<td>{{$route.Url.String}}</td>
|
||||
<td class="align-middle">
|
||||
<div class="health-circle"></div>
|
||||
@@ -117,6 +118,7 @@
|
||||
</tr>
|
||||
{{end}}
|
||||
{{end}}
|
||||
{{end}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user