Im trying to setup local version of openstreetmap-website on my VPS with ubuntu 16.04 installed. I did like it says in https://github.com/openstreetmap/openstreetmap-website/blob/master/INSTALL.md . Seems like everything passed good, no errors in db migrate and test (1087 runs, 327227 assertions, 0 failures, 0 errors, 0 skips). I start server by running command "bundle exec rails server", here is the output: So it seems like server starts, and running. But i cannot access it throught browser, either by ip or domain, with port 3000, no connection. So how can i solve this problem, do i need to change any config, or how else i can start this API, to be accessible through internet? asked 28 Apr '17, 08:45 Dezurat aseerel4c26 ♦ |
As the instructions say running: "bundle exec rails server" starts the server listening on localhost (port 3000). Run "bundle exec rails server -help" to get all options, as you will see you need the "-b" to specify a different address to listen on. answered 28 Apr '17, 09:55 SimonPoole ♦ |
To Start the Server use
not
I found this soulution somewhere in the www and it works answered 21 Dec '17, 01:03 MagSungam |