I have never run this on windows, so I can't really give any guidance.
On Linux, it reports 0.0.0.0 but still does run on localhost:
Code:
sweatje@devweb script $ ruby server &
[1] 8109
sweatje@devweb script $ => Rails application started on http://0.0.0.0:3000
=> Ctrl-C to shutdown server; call with --help for options
[2005-10-04 20:02:44] INFO WEBrick 1.3.1
[2005-10-04 20:02:44] INFO ruby 1.8.2 (2004-12-25) [i686-linux]
[2005-10-04 20:02:44] INFO WEBrick::HTTPServer#start: pid=8109 port=3000
sweatje@devweb script $ curl localhost:3000
127.0.0.1 - - [04/Oct/2005:20:02:56 CDT] "GET / HTTP/1.1" 200 3156
- -> /
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Rails: Welcome on board</title>
<style>
body { background-color: #fff; color: #333; }
The settings are actually in the server script, perhaps you could just tweak the address and the port and see if it runs.
Bookmarks