質問

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