无法访问NGinx上的Rails应用程序和没有URL中的端口的Thin

时间:2014-06-26 10:53:19

标签: ruby-on-rails nginx thin

所以我使用非常标准的NGinx和Thin配置部署了我的Rail 3应用程序。但我遇到了三个问题 -

  • 我只能通过将端口附加到URL(domain.com:port)
  • 来访问应用程序
  • www.domain.com仍然显示NGinx欢迎屏幕和
  • 使用URL中的端口访问应用程序理想情况下不起作用

我的NGinx conf:

upstream thin_cluster {
    <ip_address>:3000;
    <ip_address>:3001;
    <ip_address>:3002;
}

server {
        listen       80;
        server_name  domain.com www.domain.com;

        root /home/deployer/apps/appname/current/public;

        location ^~ /assets/ {
        gzip_static on;
        gzip_disable "msie6";
        expires max;
        add_header Cache-Control public;
        }

        location / {
                try_files $uri @thin;
        }   

        location @thin {
        proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_pass http://thin_cluster;
        }

        error_page   500 502 503 504 /500.html;

        client_max_body_size 50M;
        keepalive_timeout 10;
}

我的瘦身:

---
chdir: /home/deployer/apps/appname/current
environment: production
address: 0.0.0.0
port: 3000
timeout: 30
log: log/thin.log
pid: tmp/pids/thin.pid
max_conns: 1024
max_persistent_conns: 100
require: []
wait: 30
servers: 3
daemonize: true
onebyone: true

1 个答案:

答案 0 :(得分:0)

好的,无数次回答我的问题。这个是一个非常愚蠢的错误,可能是因为睡眠不足。

问题就在这里

upstream thin_cluster { <ip_address>:3000; <ip_address>:3001; <ip_address>:3002; }

它应包含运行Thin的本地主机地址。所以这将是:

upstream thin_cluster { 127.0.0.1:3000; 127.0.0.1:3001; 127.0.0.1:3002; }

但是我仍然可以通过附加端口号来访问该应用程序。理想情况下,这应该重定向到正确的URL。也许proxy_redirect可以提供帮助吗?