21 lines
707 B
HTML
21 lines
707 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>PiFrameFleet</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p><a href="http://{{ dispatcher_dashboard_ip }}:5913">Command Line</a></p>
|
|
<p><a href="http://{{ dispatcher_dashboard_ip }}:2811">Monit Monitoring</a></p>
|
|
<p><a href="http://{{ dispatcher_dashboard_ip }}:2813">Munin Monitoring</a></p>
|
|
<p><a href="http://{{ dispatcher_dashboard_ip }}:9191">Picture File Browser</a></p>
|
|
<p>Syncthing Admin Interfaces</p>
|
|
<ul>
|
|
<li><a href="http://{{ dispatcher_dashboard_ip }}:8384">dispatcher</a></li>
|
|
{% for frame in groups['frames'] %}
|
|
<li><a href="http://{{ hostvars[frame].dispatcher_dashboard_ip }}:8384">{{ hostvars[frame].inventory_hostname }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|