Server Deploy Not Working?

I tested Render,
because I want to see a cheaper version of DO

so maybe I’ll move my server here
but seeing what is happening here

it’s quite painful
I run my user server
here Using Fastify

I already Declared the Port

WHY THE HELL it’s STILL in
BAD GATEWAY LOL
WTF

it’s on port 3000
already

What more does it want zz

any Help

I will share the answer

THE MOTHER FFER
never said that I should, declare the 0.0.0.0
is host name for the render

so rather than leaving the host to default

you must
declare both the Port and the Host like

app.listen({ port: PORT , host: ‘0.0.0.0’}, (err, address) => {
console.log(Node app is running on ${address});
});

like this, else it won’t work

weird but okay haha

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.