Access Rails Development Server From A Different Computer Access Rails Development Server From A Different Computer ruby-on-rails ruby-on-rails

Access Rails Development Server From A Different Computer


While starting the webrick server specify the IP on which your rails application will run (10.1.10.100 in your case) using -b option, it binds Rails to the specified IP.

rails server -b 10.1.10.100 -p 3000