Files
Homepage/services.xml

58 lines
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
services.xml - simple list of services for the homepage
Structure:
- Use <group> elements to organize services into categories
- Each group has a 'name' attribute for the category title
- Services without a group will appear in "Other Services"
Service Fields:
- id: unique identifier (optional)
- name: display name (required)
- proto: protocol - http or https (optional, default: http)
- port: port number (optional, shows info button if present with host)
- host: custom hostname or full URL (optional)
- logo: filename in /logos/ (optional, default: default.svg)
- status: maintenance only (optional) - will override health check
- check-health: true/false (optional, default: true) - disable auto health check
Status Behavior:
- If status="maintenance": Shows orange dot, skips health check
- Otherwise: Automatically pings service URL and shows:
* Gray spinning dot while checking
* Green pulsing dot if online
* Red dot if offline/unreachable
- Set check-health="false" to disable automatic checking
-->
<services>
<group name="Management">
<service id="portainer" name="Portainer" proto="https" port="9443" logo="portainer.svg" />
<service id="portainer-http" name="Portainer (HTTP)" proto="http" port="8000" logo="portainer.svg" />
<service id="uptime-kuma" name="Uptime Kuma" proto="http" port="3001" logo="uptime-kuma.svg" />
</group>
<group name="Media">
<service id="jellyfin" name="Jellyfin" proto="http" port="8096" logo="jellyfin.svg" host="jellyfin.spatulaa.com" />
<service id="jellyseer" name="Jellyseer" proto="http" port="5055" logo="jellyfin.svg" host="jellyseer.spatulaa.com" />
<service id="transmission" name="Transmission" proto="http" port="9091" logo="transmission.svg" />
<service id="tdarr" name="Tdarr" proto="http" port="8265" logo="tdarr.svg" />
</group>
<group name="Storage & Files">
<service id="nextcloud" name="Nextcloud" proto="http" port="8080" logo="nextcloud.svg" host="cloud.spatulaa.com" />
<service id="filebrowser" name="FileBrowser" proto="http" port="8986" logo="filebrowser.svg" />
<service id="picoshare" name="Picoshare" proto="http" port="4001" logo="picoshare.svg" />
</group>
<group name="Development">
<service id="gitea" name="Gitea" proto="http" port="3000" logo="gitea.svg" host="git.spatulaa.com" />
</group>
<group name="Other Services">
<service id="homeassistant" name="Home Assistant" proto="http" port="8123" logo="homeassistant.svg" />
<service id="kiwix" name="Kiwix" proto="http" port="666" logo="kiwix.svg" />
<service id="aurcache-repo" name="Aurcache" proto="http" port="888" logo="aurcache.svg" />
</group>
</services>