Installer n8n sur IONOS en 2026 — tuto complet de A à Z (domaine + HTTPS)

Tu viens de choisir IONOS pour héberger n8n — mais tu ne sais pas quoi faire ensuite ? 🤖 Dans ce tuto je t'installe n8n sur IONOS de A à Z — de la commande du VPS jusqu'à ton domaine accessible en HTTPS. Le seul tuto de ce type en français sur YouTube. ━━━━━━━━━━━━━━━━━━━━━━ 📌 CHAPITRES : 00:00 - Introduction 01:00 - Commander le bon VPS IONOS 03:00 - Se connecter en SSH 05:00 - Vérifier que n8n tourne 07:00 - Installer Nginx et SSL 10:00 - Corriger l URL OAuth 13:00 - Résultat final en live ━━━━━━━━━━━━━━━━━━━━━━ 🛠️ TOUTES LES COMMANDES DU TUTO : Prérequis Record DNS A : n8n.tondomaine.fr pointant vers IP du VPS 1. Connexion au VPS ssh root@VOTRE_IP 2. Installation Nginx et Certbot apt update && apt install nginx certbot python3-certbot-nginx -y 3. Trouver le docker-compose find / -name "docker-compose.yaml" 2/dev/null 4. Modifier le docker-compose nano /root/docker-compose.yaml Contenu à coller : services: n8n: image: n8nio/n8n container_name: n8n restart: always ports: "5678:5678" environment: WEBHOOK_URL=https://n8n.tondomaine.fr/ N8N_HOST=n8n.tondomaine.fr N8N_PORT=5678 N8N_PROTOCOL=https N8N_EDITOR_BASE_URL=https://n8n.tondomaine.fr/ GENERIC_TIMEZONE=Europe/Paris TZ=Europe/Paris volumes: n8n_data:/home/node/.n8n volumes: n8n_data: 5. Config Nginx nano /etc/nginx/sites-available/n8n Contenu à coller : server { listen 80; server_name n8n.tondomaine.fr; location / { proxy_pass http://localhost:5678; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } } 6. Activer Nginx ln -s /etc/nginx/sites-available/n8n /etc/nginx/sites-enabled/ nginx -t systemctl restart nginx 7. Certificat SSL gratuit certbot --nginx -d n8n.tondomaine.fr Entrer ton email Accepter CGU : A Partage email : N ━━━━━━━━━━━━━━━━━━━━━━ 👇 DIS-MOI EN COMMENTAIRE : Tu bloques sur quelle étape ? Je réponds à tout. ━━━━━━━━━━━━━━━━━━━━━━ 🔗 LIENS UTILES : Formation Flowgine :https://formation.flowgine.fr/formati... IONOS VPS : https://www.ionos.fr/serveurs/heberge... ━━━━━━━━━━━━━━━━━━━━━━ #n8n #AutomatisationIA #IONOS #VPS #AgentIA #Flowgine #NoCode #n8nFR #Tutoriel #HebergementVPS