--- title: HumHub created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, social-media, app-marathon3-rattrapage-b] confidence: high contested: false sources: [https://selfh.st/apps/?tag=social-media&app=humhub] --- # 🌐 HumHub > RĂ©seau social d'entreprise / communautĂ© — espaces, modules, messagerie, calendrier. Le "Slack/Teams" self-hosted. ## 📋 Informations GĂ©nĂ©rales | Champ | Valeur | | :--- | :--- | | **Site web** | [humhub.com](https://humhub.com) | | **GitHub** | [humhub/humhub](https://github.com/humhub/humhub) | | **License** | AGPL-3.0 (Community) | | **Langage** | PHP (Yii2) | | **Étoiles GitHub** | ~2.2k ⭐ | | **CatĂ©gorie** | [[cat-social-media\|Social Media]] | ## 📝 Description **HumHub** est une plateforme sociale prĂȘte Ă  l'emploi pour **entreprises, communautĂ©s, associations, Ă©coles** : profils, murs, espaces (groupes), modules (calendrier, tĂąches, wiki, fichiers), messagerie, notifications. DiffĂ©rence vs **Mattermost/Element/Mastodon**: HumHub est un **rĂ©seau social complet** (style Facebook pour organisations) avec une architecture extensible par modules, alors que Mattermost est purement messagerie. Pour qui: organisations, communautĂ©s, projets collaboratifs qui veulent un intranet social complet (intranet 2.0). ## 🚀 Installation ### Docker Compose (recommandĂ©) ```yaml version: '3.8' services: humhub: image: mriedmann/humhub:latest container_name: humhub restart: unless-stopped environment: - HUMHUB_DB_HOST=db - HUMHUB_DB_NAME=humhub - HUMHUB_DB_USER=humhub - HUMHUB_DB_PASSWORD=*** volumes: - humhub-data:/var/www/localhost/htdocs/protected/config - humhub-uploads:/var/www/localhost/htdocs/uploads - humhub-modules:/var/www/localhost/htdocs/protected/modules labels: - traefik.enable=true - traefik.http.routers.humhub.rule=Host(`hub.example.com`) - traefik.http.routers.humhub.entrypoints=websecure - traefik.http.routers.humhub.tls.certresolver=letsencrypt db: image: mariadb:11 container_name: humhub-db restart: unless-stopped environment: - MARIADB_DATABASE=humhub - MARIADB_USER=humhub - MARIADB_PASSWORD=*** volumes: - humhub-db:/var/lib/mysql volumes: humhub-data: humhub-uploads: humhub-modules: humhub-db: ``` ## 🔄 Alternatives ### Open Source - [[app-mixpost]] — Social media management (publication multi-rĂ©seaux). - **Mastodon** — Microblogging Fediverse. - **Mattermost** — Chat d'Ă©quipe. - **Discourse** — Forum. - **Friendica** — RĂ©seau social distribuĂ©. - **Elgg** — RĂ©seau social open source. ### PropriĂ©taires - **Microsoft Teams** — Leader entreprise. - **Slack** — Chat freemium. - **Yammer** — Intranet social Microsoft. - **Workplace by Meta** — Intranet social Facebook. ## 🔐 SĂ©curitĂ© - **Authentification**: comptes locaux + LDAP/SAML/OAuth2. - **HTTPS**: obligatoire. - **Modules**: surveiller la supply chain (HumHub Marketplace). - **Uploads**: sĂ©curiser le volume (malware scanning). - **Rate limiting**: nginx/Traefik pour Ă©viter abus. ## 📚 Ressources - [Documentation](https://docs.humhub.org/) - [GitHub](https://github.com/humhub/humhub) - [HumHub Marketplace](https://marketplace.humhub.com/) ## Pages LiĂ©es - [[cat-social-media]] — CatĂ©gorie Social Media - [[app-mixpost]] — Social media management - [[recettes-docker-compose]] — Templates Docker