无法通过NGINX访问NodeJS实例

时间:2016-03-27 04:37:17

标签: javascript node.js express nginx

我想将在NodeJS上运行的服务器部署到我的云服务器。

服务器:

操作系统:CentOS 6.5

外部IP:123.125.130.102

NodeJS代码:

server {
        listen 80;
        server_name 123.125.130.102;

        location / {
                proxy_pass http://localhost:8081/;

        }
}

我在这台服务器上运行一个实例。

NGINX配置:

import $ from 'jquery'

export const fade = {
  css: false,
  enter: function (el, done) {
    $(el)
      .css('opacity', 0)
      .css({ transform: 'scale(0.9,0.9)' })
      .animate({
        opacity: 1,
        transform: 'scale(1,1)'
      }, 1000, done)
  },
  enterCancelled: function (el) {
    $(el).stop()
  },
  leave: function (el, done) {
    $(el).animate({
      opacity: 0,
      transform: 'scale(0.9,0.9)'
    }, 1000, done)
  },
  leaveCancelled: function (el) {
    $(el).stop()
  }
}

但我似乎无法访问http://123.125.130.102:80上的节点应用程序。

我是NodeJS的新手,我不知道什么是错的。

0 个答案:

没有答案