我的站点静态文件未提供(Amazon AWS上的节点应用程序)
我使用此页面上的说明安装了一个简单的node.js / express网站:http://techprd.com/setup-node-js-web-server-on-amazon-ec2/
当我指定端口号(5000)时,看起来好像一切正常,正如你在下面看到的那样:http://aws.deliverightlogistics.com:5000/
但是,当您删除端口号时,找不到所有静态文件,您可以在这里看到结果:http://aws.deliverightlogistics.com/
节点/快速页面保存如下所示:
app.get('/ images / *',function(req,res){var url = __dirname +'/ public'+ req.url; res.sendfile(url);});
app.get('/',function(req,res){var home = __dirname +'/public/index.html'; res.sendfile(home);}); 有什么我在这里失踪?
谢谢
添加以下配置,以便当我们来自“subdomain.your_domain.com”时,充当代理的Nginx重定向到来自服务器的3000端口流量。
查看原文:
Node.js + Nginx - 现在做什么?
链接地址: http://www.djcxy.com/p/52615.html上一篇: My site static files are not served (node app on Amazon AWS)