Is there a limit when running `fetch` to send request to cloud server ip + port(not 80 or 443)?
I set up a OpenAI API proxy at http://XXX.XXX.XXX.XXX:3001. And I run a code in convex to request this url. But I get the error
Gateway Timeout
. I don't know how to solve it. Is there a limit when running fetch
to send request to my cloud server's ip + port(not 80 or 443)?
2 Replies
Hi @Winnie, I'm looking into this now. Just to confirm, the IP you're providing for the fetch is publicly accessible, right?
I'll check on our end if there's a limitation on the ports.
I've confirmed we accidentally were limiting outbound
fetch
traffic to ports 80 and 443. We'll have this fixed shortly!
This should work for you now, let me know if you still see any issues@gautamg Thanks. It works.