Deploying N8N On Docker 
so, I tested N8N on my pc,
now, I am looking on the docs to deploy it on a server with docker, and its quite confusing
Configuration For Docker Deployment
Simple Deployment With Reverse Proxy And User Management
sudo docker run -it --rm \
--name n8n \
-p 5678:5678 \
-v ~/.n8n:/home/node/.n8n \
-e N8N_BASIC_AUTH_ACTIVE="true" \
-e N8N_BASIC_AUTH_USER="thefourCraft" \
-e N8N_BASIC_AUTH_PASSWORD="somepasswrod" \
-e N8N_EMAIL_MODE="smtp"\
-e N8N_SMTP_HOST="smtp.exsmple.com"\
-e N8N_SMTP_PORT="587"\
-e N8N_SMTP_USER="thefourCraft"\
-e N8N_SMTP_PASS="somepasswrod"\
-e N8N_SMTP_SENDER="automations@exsmple.com"\
-e TZ="something from this - https://en.wikipedia.org/wiki/List_of_tz_database_time_zones" \
-e N8N_HOST="localhost"\
-e N8N_PORT"5678"\
-e N8N_PROTOCOL"http"\
n8nio/n8n
also, it’s behind the Cloudflare tunnel proxy so how can I do that? Are any additional settings needed?
because currently, my API redirects aren’t working ![]()
I really appreciate any help you (the community) can provide ![]()