Cannot connect to my new applications

Need some help, my applications used to run on http://127.0.0.0:3000 and
they were fine.
Now when webrick starts, the applications start on http://0.0.0.0:3000
and it gives me an error that cannot connect to 0.0.0.0:3000 my old
applications still run when go their site. What happened?
Thanks

Mel

melvin gant wrote:

Need some help, my applications used to run on http://127.0.0.0:3000 and
they were fine.
Now when webrick starts, the applications start on http://0.0.0.0:3000
and it gives me an error that cannot connect to 0.0.0.0:3000 my old
applications still run when go their site. What happened?

0.0.0.0 means ‘serve on all network interfaces’. It doesn’t mean that
you can point your browser at 0.0.0.0, but it should mean that you can
point your browser at 127.0.0.1 or at the real IP address of your
machine.

Hope that helps

Justin