我刚刚得到了安装了 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