I am facing the following error when I run an OpenAI block in a new self hosted typebot installation:
{
"status": 500,
"body": {
"message": "connect ECONNREFUSED 179.182.110.148:443",
"code": "INTERNAL_SERVER_ERROR",
"data": {
"code": "INTERNAL_SERVER_ERROR",
"httpStatus": 500,
"path": "continueChat"
}
}
}
179.182.110.148 is the public IP Address of my server. Although I use subdomain.domain.com.br to connect to Typebot app.
All stacks are running under Traefik built in Portainer
The log shows something not clear to me:
Something went wrong Error: connect ECONNREFUSED 179.182.110.148:443
at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) {
code: 'INTERNAL_SERVER_ERROR',
name: 'TRPCError',
[cause]: Error: connect ECONNREFUSED 179.182.110.148:443
at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1555:16) {
errno: -111,
code: 'ECONNREFUSED',
syscall: 'connect',
address: '179.182.110.148',
port: 443
}
}
Something went wrong TRPCError: Stripe environment variables are missing
at /app/apps/builder/.next/server/chunks/9108.js:1:10994
at resolveMiddleware (file:///app/node_modules/.pnpm/@[email protected]/node_modules/@trpc/server/dist/index.mjs:420:36)
at callRecursive (file:///app/node_modules/.pnpm/@[email protected]/node_modules/@trpc/server/dist/index.mjs:456:38)
at next (file:///app/node_modules/.pnpm/@[email protected]/node_modules/@trpc/server/dist/index.mjs:465:32)
at inputMiddleware (file:///app/node_modules/.pnpm/@[email protected]/node_modules/@trpc/server/dist/index.mjs:456:32)
at async callRecursive (file:///app/node_modules/.pnpm/@[email protected]/node_modules/@trpc/server/dist/index.mjs:456:32) {
code: 'INTERNAL_SERVER_ERROR',
[cause]: undefined
}
I don't use stripe payment resource. Maybe there is no correlation with the problem.
If I use typebot.io website, the OpenAI block works fine.
Thank you all!.