How to using n8n Automation guide
1. What is n8n?
2. Deployment
Standalone docker-compose.yml
services:
n8n:
image: n8nio/n8n:latest
container_name: n8n
restart: unless-stopped
ports:
- "5678:5678"
environment:
- N8N_HOST=0.0.0.0
- N8N_PORT=5678
- N8N_PROTOCOL=http
- NODE_ENV=production
- GENERIC_TIMEZONE=Asia/Bangkok
# Basic auth (recommended)
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=admin
- N8N_BASIC_AUTH_PASSWORD=change-me-strong-password
volumes:
- ./n8n-data:/home/node/.n8n
volumes:
n8n-data:Add to Existing vLLM Stack
Launch
3. Connecting n8n to vLLM
Create OpenAI Credentials in n8n
Network Note
n8n location
Base URL
4. Example Workflows
Example A: Webhook Chatbot
Example B: Scheduled Document Summarizer
Example C: Text Classification & Routing
Tips for LLM Nodes
5. Troubleshooting
n8n can't reach vLLM
"Unauthorized" / 401
Model not found
Workflow times out on long generations
Data not persisting after restart
Was this helpful?