문제

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