如何使用nginx作为平均堆栈的代理服务器?

时间:2016-05-18 04:58:58

标签: node.js nginx vagrant mean-stack mean

我刚安装了平均堆栈应用。我正在使用nginx作为平均值的代理。 这是我的配置:

server {
    listen 80;

    server_name meanjstest.local;

    location / {
        proxy_pass http://10.250.0.100:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}

当我通过meanjstest.local运行平均应用时。浏览器响应 502 Bad Gateway 。但是当我将端口3000添加到url中时,它没问题。如何删除我的网址中的端口号?你有什么解决方案吗。
我在流浪盒上使用centos 7。我的流浪公共IP是:10.250.0.100。当我访问此IP时,它会响应欢迎使用nginx ... 。端口号3000跟随,与meanjstest.local:3000

相同

0 个答案:

没有答案