0

我已经在 linode 上使用 unicorn 和 nginx 设置并部署了一个 rails 应用程序。但是,当我转到我在站点启用的应用程序配置中设置的 URL 时,我会使用正在侦听端口 80 的默认站点。如果我到达 IP 和端口,我什么也得不到。如果我将网站设置为在 80 上收听它就可以了

该 URL 从注册商指向 linode IP 并且工作正常。

启用站点中的 xxxx.co.uk 文件

upstream unicorn
  server unix:/tmp/unicorn.xxxx.co.uk.sock fail_timeout=0;
}

server {
  server_name xxxx xxxx;
  listen 3001 default deferred;
  root /var/www/apps/nocn.org.uk/current/public;

  location ^~ /assets/ {
    gzip_static on;
    #try $uri /old$uri
    expires max;
    add_header Cache-Control public;
  }

  try_files $uri/index.html $uri @unicorn;
  location @unicorn {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;
    proxy_pass http://unicorn;
  }

  error_page 500 502 503 504 /500.html;
  client_max_body_size 4G;
  keepalive_timeout 10;
}
4

1 回答 1

1

确保您在 linode 的防火墙或配置中启用了对端口 3001 的远程访问(可能通过使用 iptables)。

于 2013-10-01T13:35:05.610 回答