1

我正在使用 One-Click Ubuntu 12.10 Installation droplet 在 DigitalOcean 上为 Rails 4 开发的移动应用程序托管 API。因此 nginx 和 Unicorn 已预先配置并正在运行。当我尝试从 Web 浏览器上的 Rails 公共文件夹中打开文件时,它可以工作。

但是当我尝试使用routes.rb文件中定义的任何其他路径时,我没有得到任何答案。我的请求正在加载,直到超时。当我rails s -e production在服务器上键入时,这种情况会发生变化——然后一切都按预期工作。所以肯定是nginx什么的有问题。我错过了什么?

这是我的 nginxsites-enabled/default文件内容(我不知道这是否是要寻找的东西,但也许):

server {
    listen   80;
    root /home/rails/public;
    server_name _;
    index index.htm index.html;

    location / {
            try_files $uri/index.html $uri.html $uri @app;
    }

    #location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|mid$
    location ~* ^.+\.(jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rt$
            try_files $uri @app;
     }

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

}

更新:这是我的nginx.conf文件,以防有帮助:

user www-data;
worker_processes 4;
pid /var/run/nginx.pid;

events { worker_connections 1024; }

http {
    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    gzip on;
    gzip_disable "msie6";
    gzip_types text/plain text/xml text/css text/comma-separated-values;
    upstream app_server { server 127.0.0.1:8080 fail_timeout=0; }

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

更新2:这里是我的unicorn.conf文件:

listen "127.0.0.1:8080"
worker_processes 2
user "rails"
working_directory "/home/rails"
pid "/home/unicorn/pids/unicorn.pid"
stderr_path "/home/unicorn/log/unicorn.log"
stdout_path "/home/unicorn/log/unicorn.log"
4

1 回答 1

0

我遇到了同样的问题,并且bundle install在我的应用程序的根目录上运行(在 digitalocean droplet 上)解决了我的问题。我想我必须将它构建到我的 capistrano 脚本中

于 2014-02-03T21:30:33.907 回答