Initial vault setup
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
---
|
||||
title: Notifiarr
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, app, monitoring, auto-hebergement]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources:
|
||||
- https://selfh.st/apps/?search=notifiarr
|
||||
- https://github.com/Notifiarr/notifiarr
|
||||
---
|
||||
|
||||
# 📈 Notifiarr
|
||||
|
||||
> **Agrégateur de notifications et de monitoring pour stack *arr (Sonarr, Radarr, Lidarr…), avec alertes Discord et webhooks centralisés.**
|
||||
|
||||
## 📊 Métadonnées
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Nom** | Notifiarr |
|
||||
| **Slug** | `notifiarr` |
|
||||
| **Catégorie principale** | [[cat-monitoring]] |
|
||||
| **Langage** | lang_id=15 |
|
||||
| **Stars** | ⭐ 888 |
|
||||
| **Dernière MAJ** | 2026-03-09 |
|
||||
| **Repo** | [github.com/Notifiarr/notifiarr](https://github.com/Notifiarr/notifiarr) |
|
||||
| **Site** | [notifiarr.wiki](https://notifiarr.wiki) |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
Notifiarr est un projet né pour répondre à un besoin précis : centraliser les notifications et le monitoring d'une stack multimédia *arr (Sonarr, Radarr, Lidarr, Readarr, Prowlarr, Bazarr…). Il agrège les webhooks de ces services, y ajoute des checks de monitoring custom, et relaie le tout vers Discord, Telegram, email, etc.
|
||||
|
||||
L'application expose aussi un endpoint « Notifiarr.com » optionnel pour la communauté *arr, qui permet de partager des configurations et d'agréger des stats globales. Le wiki officiel détaille les nombreuses options de configuration.
|
||||
|
||||
## 🐳 Installation Docker
|
||||
|
||||
```yaml
|
||||
# docker-compose.yml minimal
|
||||
services:
|
||||
notifiarr:
|
||||
image: ghcr.io/notifiarr/notifiarr:latest
|
||||
container_name: notifiarr
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "5454:5454"
|
||||
volumes:
|
||||
- ./data:/config
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
```
|
||||
|
||||
> ⚠️ Adapte image/port/volumes selon le README officiel : https://github.com/Notifiarr/notifiarr
|
||||
|
||||
## 🔀 Reverse Proxy (Traefik)
|
||||
|
||||
```yaml
|
||||
services:
|
||||
notifiarr:
|
||||
image: ghcr.io/notifiarr/notifiarr:latest
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.notifiarr.rule=Host(`notifiarr.example.com`)"
|
||||
- "traefik.http.routers.notifiarr.entrypoints=websecure"
|
||||
- "traefik.http.routers.notifiarr.tls.certresolver=letsencrypt"
|
||||
- "traefik.http.services.notifiarr.loadbalancer.server.port=5454"
|
||||
```
|
||||
|
||||
## 🔧 Configuration
|
||||
|
||||
- Fichier de configuration TOML : endpoints *arr, webhooks, Discord, etc.
|
||||
- Intégration avec notifiarr.com (optionnel) pour la communauté
|
||||
- Templates de messages d'alerte personnalisables
|
||||
|
||||
## 🔀 Alternatives
|
||||
|
||||
**Open source** :
|
||||
- Apprise (Python, multi-notifications)
|
||||
- Shoutrrr (Go, CLI/lib de notifications)
|
||||
- Ntfy (push notifications self-hosted)
|
||||
|
||||
**Propriétaires** :
|
||||
- Pushover (payant, push mobile)
|
||||
- Pushbullet (freemium)
|
||||
|
||||
## 🔒 Sécurité
|
||||
|
||||
- L'API key Notifiarr doit rester secrète
|
||||
- Webhooks sortants à sécuriser (HMAC si supporté)
|
||||
- HTTPS recommandé
|
||||
|
||||
## 📚 Ressources
|
||||
|
||||
- [selfh.st/apps/?search=notifiarr](https://selfh.st/apps/?search=notifiarr)
|
||||
- [GitHub](https://github.com/Notifiarr/notifiarr)
|
||||
- [Wiki](https://notifiarr.wiki)
|
||||
|
||||
## 🔗 Pages Liées
|
||||
|
||||
- [[cat-monitoring]] — Catégorie monitoring
|
||||
- [[Catalogue-Self-Hosted]] — Hub principal
|
||||
Reference in New Issue
Block a user