Webhook problem

Hi everyone,
I’m trying to set up a webhook integration between Baserow and n8n. Both are running as Docker containers in the same network, both are up-to-date.
I’m using the production webhook URL, both methods are POST, and the n8n workflow is active.
However, Baserow still can’t reach n8n, even though I have BASEROW_DISABLE_PUBLIC_URL_CHECK: "true" set in my docker-compose.
When I test with CURL, the webhook works just fine.
Has anyone run into this and found a solution? Thanks!

Let me know if you want to add or clarify anything else!




Hi @AlesHomonicky , welcome to the community!

Have you also set BASEROW_WEBHOOKS_ALLOW_PRIVATE_ADDRESS to true ? I think this should solve your issue

I will try, I dindt heare anythong about it. Thanks a lot, I will try

The same, this doesnt help

Did you reboot the container to ensure the change has taken effect?

Yes, of course. I made new image. At compose I have
environment:
BASEROW_DATABASE_USER: baserow
BASEROW_DATABASE_PASSWORD: dfhgdhgdaghd
BASEROW_DATABASE_NAME: baserow
BASEROW_DATABASE_HOST: baserow-postgres
BASEROW_PUBLIC_URL: http://1.2.3.4:8000
BASEROW_DISABLE_ALLOWED_WEBHOOK_URL_CHECK: “true”
BASEROW_DISABLE_PUBLIC_URL_CHECK: “true”
EMAIL_SMTP: “true”
EMAIL_SMTP_HOST: mail.1.2.3.4.cz
EMAIL_SMTP_PORT: 587
EMAIL_SMTP_USE_TLS: “true”
EMAIL_SMTP_USER: 1@2.cz
EMAIL_SMTP_PASSWORD: 1234
FROM_EMAIL: 1@2.cz
EMAIL_SMTP_FROM: 1@2.cz
BASEROW_WEBHOOKS_ALLOW_PRIVATE_ADDRES: “true”

You are missing an extra S on ADDRESS in your variable name. It should be BASEROW_WEBHOOKS_ALLOW_PRIVATE_ADDRESS

[quote=“AlesHomonicky, post:6, topic:10127”]
BASEROW_DATABASE_USER: baserow
BASEROW_DATABASE_PASSWORD: dfhgdhgdaghd
BASEROW_DATABASE_NAME: baserow
BASEROW_DATABASE_HOST: baserow-postgres
BASEROW_PUBLIC_URL: http://1.2.3.4:8000
BASEROW_DISABLE_ALLOWED_WEBHOOK_URL_CHECK: “true”
BASEROW_DISABLE_PUBLIC_URL_CHECK: “true”
EMAIL_SMTP: “true”
EMAIL_SMTP_HOST: mail.1.2.3.4.cz
EMAIL_SMTP_PORT: 587
EMAIL_SMTP_USE_TLS: “true”
EMAIL_SMTP_USER: 1@2.cz
EMAIL_SMTP_PASSWORD: 1234
FROM_EMAIL: 1@2.cz
EMAIL_SMTP_FROM: 1@2.cz
BASEROW_WEBHOOKS_ALLOW_PRIVATE_ADDRES: “true”
[/quot Super, you are genius, its working :slight_smile: