feat: add Authelia brand logo detection

Trigger keyword: authelia. Icon colour: #113155.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-17 12:22:53 +02:00
parent 9fe6b25786
commit 3e2d9e6a77
4 changed files with 6 additions and 2 deletions
+1
View File
@@ -297,6 +297,7 @@ Pueden aparecer varios logos simultáneamente si coinciden varias palabras clave
| Red | OpenWrt | `openwrt` |
| Web / proxy | Apache | `apache`, `apache2`, `httpd` |
| Web / proxy | Traefik | `traefik` |
| Web / proxy | Authelia | `authelia` |
| Base de datos | MariaDB | `mariadb` |
| Orquestación | Kubernetes | `kubernetes`, `k8s`, `kubectl`, `k3s` |
| OS | Debian | `debian` |
+1
View File
@@ -297,6 +297,7 @@ Plusieurs logos peuvent s'afficher simultanément si plusieurs mots-clés corres
| Réseau | OpenWrt | `openwrt` |
| Web / proxy | Apache | `apache`, `apache2`, `httpd` |
| Web / proxy | Traefik | `traefik` |
| Web / proxy | Authelia | `authelia` |
| Base de données | MariaDB | `mariadb` |
| Orchestration | Kubernetes | `kubernetes`, `k8s`, `kubectl`, `k3s` |
| OS | Debian | `debian` |
+1
View File
@@ -297,6 +297,7 @@ Multiple logos can appear simultaneously if several keywords match.
| Network | OpenWrt | `openwrt` |
| Web / proxy | Apache | `apache`, `apache2`, `httpd` |
| Web / proxy | Traefik | `traefik` |
| Web / proxy | Authelia | `authelia` |
| Database | MariaDB | `mariadb` |
| Orchestration | Kubernetes | `kubernetes`, `k8s`, `kubectl`, `k3s` |
| OS | Debian | `debian` |
+3 -2
View File
@@ -2,7 +2,7 @@ import {
siProxmox, siDocker,
siSynology, siTruenas,
siUbiquiti, siMikrotik, siCisco, siTplink, siAsus, siNetgear, siPfsense, siOpnsense, siOpenwrt,
siApache, siTraefikproxy,
siApache, siTraefikproxy, siAuthelia,
siMariadb,
siKubernetes,
siDebian, siUbuntu,
@@ -36,9 +36,10 @@ const BRANDS = [
{ kw: ['opnsense'], icon: siOpnsense },
{ kw: ['openwrt'], icon: siOpenwrt },
// Serveurs web / proxy
// Serveurs web / proxy / auth
{ kw: ['apache', 'apache2', 'httpd'], icon: siApache },
{ kw: ['traefik'], icon: siTraefikproxy },
{ kw: ['authelia'], icon: siAuthelia },
// Bases de données
{ kw: ['mariadb', 'maria db'], icon: siMariadb },