我的代理服务器配置是否错误?

时间:2018-07-22 03:34:22

标签: node.js nginx amazon-ec2

我偶然发现了一种通过反复试验而起作用的配置。但是我无法判断我是否做得不好。 https://www.nginx.com/blog/setting-up-nginx/我已使用本指南来设置一些文件和文件夹,但随后对其进行了更改以使其适用于节点和端口3000。

这是我在文件夹/ home / ubuntu / server中的index.js文件

var http=require('http');

var server=http.createServer(function(req,res){
    res.end('tudor');
});

server.on('listening',function(){
    console.log('ok, server is running');
});

server.listen(3000);
index.js (END)

/etc/nginx/conf.d$减少server1.conf

server {
    root /home/ubuntu/public_html;

    location /application1 {
        proxy_pass http://localhost:8080/sampleApp;
    }

    location /images {          
        root /home/ubuntu/data; 
    }

    location / {
        proxy_pass http://localhost:3000;
    }

}

这有什么问题吗?

0 个答案:

没有答案