Question

I have installed dashing and set up a on a windows 8 machine, which uses the thin webserver. However, when I run

>dashing start -p 1338

and navigate to http://localhost:1338, chrome cannot load the page.

How can I see a list of everything that thin is currently serving to make sure it's hosting the site correctly?

Était-ce utile?

La solution

Check out C:\windows\system32\drivers\etc\hosts to make sure localhost is routed to 127.0.0.1.

If that's setup you can can see on what NICs thin is available on by going in to cmd and running 'netstat -an' Which should give an ip address in the list with port 1338.

Finally you can use telnet to try to connect from the comand line: 'telnet 127.0.0.1 1338'.

HTH,

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top