Running NodeJs http-server forever with PM2

本小妞迷上赌 提交于 2020-05-24 21:26:42

问题


My question is about running HTTP-server in combination with PM2.

The problem i face is that:

  1. HTTP-server requires as input a folder which is the root of the website and a port number to run the website on.
  2. PM2 doesn't recognize the HTTP-server command, even when HTTP-server is installed with the -g option.

So i tried the following (note the double dash which should pass the parameters to the HTTP-server script:

/node_modules/http-server/lib$ pm2 start http-server.js -- /home/unixuser/websiteroot -p8686

But it doesn't work.

I also tried:

http-server /home/unixuser/websiteroot -p8686

Which does work, but doesn't have the great support of pm2 ?

Any suggestions would be great, thanks!


回答1:


You almost had it.

Check where http-server is located by executing:

$ which http-server

You should get something like this /usr/bin/http-server

Then cd to the directory you want to serve files from and execute:

$ pm2 start /usr/bin/http-server --name my-file-server -- -p 8080 -d false

--name my-file-server is optional, but -- is required to pass arguments through to the http-server command.




回答2:


pm2 start 'http-server-spa websiteroot index.html 8080'



回答3:


pm2 start <location>/http-server --name http-server -- -p <port> -d false

or

PM2 modules it self has in-build static file to be served, which is similar to http-server https://pm2.keymetrics.io/docs/usage/expose/

pm2 serve <path> <port>



回答4:


if we have a build generated by grunt,then go to its path and hit:

~/app/build/prod$ sudo pm2 start /usr/local/bin/http-server -p 8080

Now check app status at localhost:8080



来源:https://stackoverflow.com/questions/31804966/running-nodejs-http-server-forever-with-pm2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!