0

我刚刚得到了安装了 nginx、unicorn 和一个新的 rails 应用程序的 VM。我查看了 nginx 配置文件,但我不明白它是如何连接到 unicorn 的,尤其是因为似乎没有任何上游设置(这是大多数教程所说的你需要的)。

这是我的配置设置:

/home/unicorn/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"

/etc/nginx/sites-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|midi|wav|bmp|rtf|js|mp3|flv|mpeg|avi)$ {
                        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;
    }

}

服务器似乎正在定义一个位置@app,并将请求传递给http://app_server......我不确定它从哪里获得app_server......那会是其他地方定义的上游吗?

更多信息,这篇文章的设置与我的 vps 完全相同。https://www.digitalocean.com/community/articles/how-to-1-click-install-ruby-on-rails-on-ubuntu-12-10-with-digitalocean

4

1 回答 1

0

通常app_server会在另一个文件中定义为上游。例如 - 在我的 debian 系统上,我设置了一个与您类似的位置,指向一个名为www

在我的/etc/nginx/sites-enabled目录中,我有一个名为upstream_www_app以下内​​容的文件

upstream www {
  server localhost:24910 fail_timeout=0 weight=5;
}

24910 是我的应用程序中定义的端口config/unicorn.rb,我的主要nginx.conf包括目录中的所有文件sites-enabled

于 2013-08-08T11:26:03.653 回答