Node.js consistently giving 503 error

后端 未结 1 662
再見小時候
再見小時候 2020-12-20 05:21

I just installed Node.js, got it working for a while, then tried to run a standard Hello World program.

var http = require(\"http\");

http.createServer(fun         


        
相关标签:
1条回答
  • 2020-12-20 05:34

    How do you set up the domain?

    Did you use another HTTP server as a proxy?

    Please check if node is running, and if yes check your HTTP server is too.

    Maybe your node crashed or is just not running.

    Another test is to connect your node directly:

    http://127.0.0.1:8081/

    0 讨论(0)
提交回复
热议问题