Server is running on andasy but I can't reach it on the internet

I can SSH inside the application and from the logs it seems the server is running but on the internet it is not reachable.

Hey there,

This is probably an issue with the current limitation we have with addresses apps can listen to, currently apps need to bind to ipv6 addresses for our proxy to reach them.

Usually apps default to bind to 0.0.0.0 which causes routing issues when our proxy tries to reach your app so you need to change the default interface your app listens to. Here are some options you can consider:

  1. Listen to our internal address that binds to ipv6 of the machine running your app which is andasy-local-pn6

  2. Listen to :: which should listen to both ipv4 and ipv6.

Let me know if this works out and you can now reach your app or if we can troubleshoot more.

1 Like

I can confirm that this works, thanks for the help!