I am using @astrojs/ node adapter and my config looks like this:
import node from "@astrojs/node";
...
adapter: node({
mode: "standalone"
})
When I run node ./dist/server/entry.mjs locally on my dev pc I can reach the site from http://localhost:4321. When I run this command on as raspberry pi I can not reach the site either using the hostname or ip. Other servers on other ports are working fine on the device. What do I need to change to make the site reachable?