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?

有帮助吗?

解决方案

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,

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top