Bundle exec rails server --binding=0.0.0.0

After running this, nothing loads.

What do you see on your screen when you run that, how did you setup your dev environment?

btw use ./bin/unicorn not that.

4 Likes

Use UNICORN_BIND_ALL=1 bundle exec rails server instead

4 Likes

Thank you so much. Everywhere in docs there is to use --binding=0.0.0.0 but only after your command I was able to connect outside of localhost.

1 Like