Is it possible to perform a
rails server -b my.public.ip.address -p 8000
running this code obviously doesn't work. So I am wondering if there is a way to around this?
Is it possible to perform a
rails server -b my.public.ip.address -p 8000
running this code obviously doesn't work. So I am wondering if there is a way to around this?
You can use rails server -b 0.0.0.0 -p 8000
, and review the following things:
http://<your-ip>:8000