为了账号安全,请及时绑定邮箱和手机立即绑定

阿里云上面用node.js + nginx搭建网站,每次访问都是‘welcom to nginx’

阿里云上面用node.js + nginx搭建网站,每次访问都是‘welcom to nginx’

白猪掌柜的 2018-07-10 16:28:26
我在阿里云上面用node.js + nginx搭建一个个人网站,但是每次访问都是‘welcom to nginx’提示server.js文件http.createServer(function(req, res){   const pathname = url.parse(req.url).pathname;   console.log(pathname);   switch(pathname){       case '':       case '/':          index(req, res);break;       default:          loadfiels(req, res, pathname);break;    } }).listen(9000, '0.0.0.0');用pm2运行这个文件,启动成功了:nginx 的配置conf/servers的文件下面有一个web.conf文件server {  listen       80;  server_name  tonghuiflang.com;  location / {      proxy_pass http://127.0.0.1:9000;   } }在conf/nginx.conf 和 conf/nginx.conf.default 的http最后 添加 include servers/*;可是通过域名访问还是‘welcom to nginx’提示,在本地是没有问题的
查看完整描述

2 回答

?
LEATH

TA贡献1936条经验 获得超6个赞

更新配置后重启 nginx 了吗?

查看完整回答
反对 回复 2018-07-10
  • 2 回答
  • 0 关注
  • 727 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信