Initial vault setup
This commit is contained in:
@@ -0,0 +1,110 @@
|
||||
---
|
||||
title: Leed
|
||||
created: 2026-06-07
|
||||
updated: 2026-06-07
|
||||
type: app
|
||||
tags: [catalogue, feed-reader, php]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=feed-reader]
|
||||
---
|
||||
|
||||
# Leed 📚
|
||||
> Lecteur de flux RSS en PHP léger et francophone, conçu pour être simple à installer sur un mutualisé comme sur un VPS, avec une UI propre.
|
||||
|
||||
| Métadonnée | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | https://leed.idleman.fr |
|
||||
| **GitHub** | https://github.com/LeedRSS/Leed |
|
||||
| **License** | GPL-3.0 |
|
||||
| **Langage** | PHP |
|
||||
| **Étoiles** | 41 |
|
||||
| **Dernière MAJ** | 2024 |
|
||||
| **Catégorie** | [[cat-feed-reader]] |
|
||||
|
||||
## Description
|
||||
|
||||
Leed (pour « Light Feed » ou contraction de « Leed RSS ») est un lecteur RSS francophone open source initié par Idleman, très populaire dans la communauté FR du self-host pour sa simplicité. Il fonctionne sur n'importe quel LAMP (PHP 7+/8+ + MySQL/SQLite) et propose un déploiement en quelques minutes.
|
||||
|
||||
Les fonctions essentielles sont là : abonnements, dossiers, tags, gestion de l'état lu/non lu, import/export OPML, raccourcis clavier, et un système de plugins pour étendre les fonctionnalités. L'UI est en français par défaut, ce qui en fait un choix naturel pour les utilisateurs non-anglophones.
|
||||
|
||||
Idéal pour qui veut un lecteur RSS complet sans la complexité de Tiny Tiny RSS, avec un développeur francophone accessible et une communauté active.
|
||||
|
||||
## Installation
|
||||
|
||||
### Option 1 : Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
leed:
|
||||
image: ghcr.io/idleman/leed:latest
|
||||
container_name: leed
|
||||
ports:
|
||||
- "8105:80"
|
||||
environment:
|
||||
- LEED_DB_HOST=db
|
||||
- LEED_DB_NAME=leed
|
||||
- LEED_DB_USER=leed
|
||||
- LEED_DB_PASS=*** depends_on:
|
||||
- db
|
||||
volumes:
|
||||
- ./data:/var/www/html/data
|
||||
restart: unless-stopped
|
||||
|
||||
db:
|
||||
image: mariadb:11
|
||||
container_name: leed-db
|
||||
environment:
|
||||
- MARIADB_ROOT_PASSWORD=*** - MARIADB_DATABASE=leed
|
||||
- MARIADB_USER=leed
|
||||
- MARIADB_PASSWORD=*** volumes:
|
||||
- ./dbdata:/var/lib/mysql
|
||||
restart: unless-stopped
|
||||
```
|
||||
|
||||
### Option 2 : Installation manuelle (LAMP)
|
||||
|
||||
```bash
|
||||
git clone https://github.com/LeedRSS/Leed.git
|
||||
cd Leed
|
||||
# Pointer Apache/Nginx sur le dossier, créer la BDD, puis installateur web
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
- Configurer le cron de rafraîchissement : `*/15 * * * * php /path/to/leed/cron.php`.
|
||||
- Activer HTTPS via reverse-proxy.
|
||||
- Personnaliser les thèmes (Light, Dark).
|
||||
|
||||
## Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-freshrss]] — PHP plus moderne
|
||||
- [[app-tiny-tiny-rss]] — vétéran PHP
|
||||
- [[app-miniflux]] — Go minimaliste
|
||||
- [[app-rss]] — Go ultra-minimal
|
||||
- [[app-refeed]] — TypeScript
|
||||
|
||||
### Propriétaires
|
||||
- Feedly
|
||||
- Inoreader
|
||||
- NetNewsWire
|
||||
- Reeder
|
||||
|
||||
## Sécurité
|
||||
|
||||
- HTTPS obligatoire.
|
||||
- Mises à jour PHP et Leed suivies.
|
||||
- Sauvegardes MariaDB + dossier data.
|
||||
- Restreindre l'accès admin à un réseau de confiance.
|
||||
|
||||
## Ressources
|
||||
- [Site officiel](https://leed.idleman.fr)
|
||||
- [Dépôt GitHub](https://github.com/LeedRSS/Leed)
|
||||
- [selfh.st listing](https://selfh.st/apps/?tag=feed-reader)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-feed-reader]]
|
||||
- [[recettes-docker-compose]]
|
||||
- [[securisation-home-lab]]
|
||||
Reference in New Issue
Block a user