Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 crud Operation 成功构建节点 js api,并在本地正常工作。但是如何将生产移动到现场查看 api 数据。我尝试了 pm2,但也为本地 ipaddress 工作。如何解决这个问题的任何解决方案..
将server.js或index.js文件中的主机名从“localhost”更改为0.0.0.0,然后您的服务器将暴露给您的网络外部
如果您使用的是 pm2,则可以在启动该过程时选择环境作为生产。
pm2 start config.js --env production
参考: http: //pm2.keymetrics.io/docs/usage/environment/