The problem:
When I run my wokflow from the url https://n8n.tangara.com.co it does not finish successfully until I stop it manually.
When I run my workflow from the ip http://176.57.188.53:5678 it does show the execution of each node until it finishes successfully.
Can you please tell me how to solve this incident?
You can see the scenario in the following link.
The test workflow:
Information on n8n setup
- n8n version: 1.44.2
- Database (default: SQLite): SQLite
- n8n EXECUTIONS_PROCESS setting (default: own, main): own
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
- Operating system: Ubuntu 20.04
##Installed using the following command:
echo ‘N8N_TUNNEL_SUBDOMAIN=n8n
NODE_ENV=production
WEBHOOK_URL=https://n8n.mydomain.com.co
N8N_BASIC_AUTH_ACTIVE=true
N8N_BASIC_AUTH_USER=MyUser
N8N_BASIC_AUTH_PASSWORD=MyPass
N8N_EMAIL_MODE=smtp
N8N_SMTP_HOST=smtp.mysmtp.com
N8N_SMTP_PORT=465
N8N_SMTP_USER="[email protected]"
N8N_SMTP_PASS=“MyPassword”
N8N_SMTP_SENDER=N8N
N8N_SMTP_SSL=true
GENERIC_TIMEZONE=America/Bogota’ > ~/.env-n8n
docker volume create n8n_data
docker run -d --env-file ~/.env-n8n --name n8n --restart unless-stopped -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n:latest start