We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am running n8n in docker compose with OrbStack app which provide DOMAIN and HTTPS for docker compose
my docker compose env:
- DB_TYPE=postgresdb - DB_POSTGRESDB_HOST=postgres - DB_POSTGRESDB_PORT=5432 - DB_POSTGRESDB_DATABASE=${POSTGRES_DB} - DB_POSTGRESDB_USER=${POSTGRES_NON_ROOT_USER} - DB_POSTGRESDB_PASSWORD=${POSTGRES_NON_ROOT_PASSWORD} - NODE_ENV=production - N8N_EDITOR_BASE_URL=https://n8n.${COMPOSE_PROJECT_NAME}.orb.local - WEBHOOK_URL=https://n8n.${COMPOSE_PROJECT_NAME}.orb.local
Bug: Editor is now accessible via: printing http://localhost:5678/ which is incorrect.
Editor is now accessible via:
http://localhost:5678/
The root cause seams it is using generateBaseUrl instead of getInstanceBaseUrl
generateBaseUrl
getInstanceBaseUrl
the expected print should be https://n8n.agentic.orb.local
https://n8n.agentic.orb.local
n8n/packages/cli/src/commands/start.ts
Line 326 in 9e4e1ca
MacOS
1.77.3
v23.7.0
PostgreSQL
main (default)
The text was updated successfully, but these errors were encountered:
Hey @xmlking,
We have created an internal ticket to look into this which we will be tracking as "GHC-761"
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug Description
I am running n8n in docker compose with OrbStack app which provide DOMAIN and HTTPS for docker compose
my docker compose env:
Bug:
Editor is now accessible via:
printinghttp://localhost:5678/
which is incorrect.The root cause seams it is using
generateBaseUrl
instead ofgetInstanceBaseUrl
the expected print should be
https://n8n.agentic.orb.local
n8n/packages/cli/src/commands/start.ts
Line 326 in 9e4e1ca
To Reproduce
Expected behavior
the expected print should be
https://n8n.agentic.orb.local
Operating System
MacOS
n8n Version
1.77.3
Node.js Version
v23.7.0
Database
PostgreSQL
Execution mode
main (default)
The text was updated successfully, but these errors were encountered: