我有一个 VPS,最近将我的服务器设置从 apache/passenger 移动到 nginx/unicorn 并添加了一个登台服务器。如果我直接点击服务器http://xxx.xxx.xx.xx,我的应用程序就没有问题了。但是,如果我使用 staging 子域http://staging.myurl.com 访问它,我会得到 404。我怀疑 unicorn 存在问题,但我无法弄清楚。
这是我所拥有的:
/etc/nginx/sites-enabled/codemarks
upstream unicorn {
server unix:/tmp/unicorn.blog.sock fail_timeout=0;
}
server {
listen 80 default deferred;
server_name staging.codemarks.com;
root /home/deployer/apps/codemarks/current/public;
location ^~ /assets/ {
gzip_static on;
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;
}
然后在 /etc/hosts
127.0.0.1 localhost.localdomain localhost
xxx.xxx.xxx.xxx staging.codemarks.com staging
我有一个站点的 DNS 记录,并添加了一条 A 记录来指向我的新 IP 的暂存。此外,我检查了 /var/log/nginx/access.log 并记录了直接(成功)请求,但使用 staging.codemarks.com yields
216.21.198.16 - - [26/Dec/2012:14:41:07 -0500] "GET /codemarks HTTP/1.1" 404 446 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.20 (KHTML, like Gecko) Chrome/25.0.1337.0 Safari/537.20
我是使用独角兽的新手,所以我不确定我错过了什么。由于直接命中是成功的,我怀疑是 DNS 问题或缺少某些特定于域的独角兽设置,但我正在碰壁。提前感谢您的帮助!
更新
/tmp/unicorn.blog.sock 似乎不合适,因为我偷了一个有它的 railscast 的一部分。不过,它应该可以工作,因为我将它作为我的独角兽配置传递:
配置/独角兽.rb
root = "/home/deployer/apps/codemarks/current"
working_directory root
pid "#{root}/tmp/pids/unicorn.pid"
stderr_path "#{root}/log/unicorn.log"
stdout_path "#{root}/log/unicorn.log"
listen "/tmp/unicorn.blog.sock"
worker_processes 2
timeout 30
我通过(盲目且不知不觉地)运行来设置我的 unicorn.blog.sock:
sudo update-rc.d -f unicorn_blog defaults