102 lines
3.0 KiB
Markdown
102 lines
3.0 KiB
Markdown
---
|
|
title: eziwiki
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, app, note-taking, auto-hebergement]
|
|
confidence: medium
|
|
contested: false
|
|
sources:
|
|
- https://selfh.st/apps/?search=eziwiki
|
|
- https://github.com/i3months/eziwiki
|
|
---
|
|
|
|
# 📝 eziwiki
|
|
|
|
> **Générateur de wiki et documentation léger et minimaliste, parfait pour centraliser ses notes techniques.**
|
|
|
|
## 📊 Métadonnées
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Nom** | eziwiki |
|
|
| **Slug** | `eziwiki` |
|
|
| **Catégorie principale** | [[cat-note-taking]] |
|
|
| **Langage** | lang_id=15 |
|
|
| **Stars** | ⭐ 97 |
|
|
| **Dernière MAJ** | 2025-12-29 |
|
|
| **Repo** | [github.com/i3months/eziwiki](https://github.com/i3months/eziwiki) |
|
|
| **Site** | [github.com/i3months/eziwiki](https://github.com/i3months/eziwiki) |
|
|
|
|
## 📝 Description
|
|
|
|
eziwiki est un générateur de wiki et de documentation conçu pour rester simple à installer et à utiliser. Il produit un site statique consultable à partir de fichiers Markdown, idéal pour un wiki personnel ou une base de connaissances d'équipe.
|
|
|
|
L'approche est volontairement dépouillée : pas de base de données, pas d'éditeur WYSIWYG, juste du Markdown versionnable. Le projet convient particulièrement aux homelabbers qui veulent documenter leur infrastructure sans dépendre d'un service SaaS.
|
|
|
|
## 🐳 Installation Docker
|
|
|
|
```yaml
|
|
# docker-compose.yml minimal
|
|
services:
|
|
eziwiki:
|
|
image: ghcr.io/i3months/eziwiki:latest
|
|
container_name: eziwiki
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
```
|
|
|
|
> ⚠️ Adapte image/port/volumes selon le README officiel : https://github.com/i3months/eziwiki
|
|
|
|
## 🔀 Reverse Proxy (Traefik)
|
|
|
|
```yaml
|
|
services:
|
|
eziwiki:
|
|
image: ghcr.io/i3months/eziwiki:latest
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.eziwiki.rule=Host(`eziwiki.example.com`)"
|
|
- "traefik.http.routers.eziwiki.entrypoints=websecure"
|
|
- "traefik.http.routers.eziwiki.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.eziwiki.loadbalancer.server.port=8080"
|
|
```
|
|
|
|
## 🔧 Configuration
|
|
|
|
- Les pages sont stockées comme fichiers Markdown dans le volume monté
|
|
- Configuration minimale : site title, thème, langue
|
|
- Sauvegarde = copier le répertoire de données
|
|
|
|
## 🔀 Alternatives
|
|
|
|
**Open source** :
|
|
- Wiki.js (plus complet, base de données)
|
|
- DokuWiki (PHP, très mature)
|
|
|
|
**Propriétaires** :
|
|
- Notion (freemium, cloud-first)
|
|
- Confluence (Atlassian, payant)
|
|
|
|
## 🔒 Sécurité
|
|
|
|
- À protéger par authentification si exposé publiquement
|
|
- Pas d'auth intégrée par défaut : prévoir un reverse-proxy auth (Authelia, etc.)
|
|
|
|
## 📚 Ressources
|
|
|
|
- [selfh.st/apps/?search=eziwiki](https://selfh.st/apps/?search=eziwiki)
|
|
- [GitHub](https://github.com/i3months/eziwiki)
|
|
- [Site officiel](https://github.com/i3months/eziwiki)
|
|
|
|
## 🔗 Pages Liées
|
|
|
|
- [[cat-note-taking]] — Catégorie note-taking
|
|
- [[Catalogue-Self-Hosted]] — Hub principal
|