我有一个VPS,最近将我的服务器设置从apache / passenger移动到nginx / unicorn,并添加了一个临时服务器。如果我直接点击服务器http://xxx.xxx.xx.xx,我的应用程序就没问题了。但是,如果我用分段子域http://staging.myurl.com命中它,我得到404.我怀疑独角兽有问题,但我无法理解。
这就是我所拥有的:
的/ etc / nginx的/ / 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命中它
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。但它应该可以工作,因为我将它作为我的独角兽配置传递:
配置/ unicorn.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