成功部署我的rails应用程序后,当我访问ip时,我得到了502(Bad Gateway)。
当我跑步时
L.Popup
该应用在本地生产环境中运行良好。当我查看 production.log 时,我发现没有任何警告或错误。我迷失了如何追查问题的根源。
我正在使用:ubuntu,nginx,capistrano,&独角兽。
nginx.conf
rails s -e production
nginx' s错误.log
upstream unicorn {
server unix:/tmp/unicorn.mysite.sock fail_timeout=0;
}
server {
server_name dima;
return 301 $scheme://mysite$request_uri;
}
server {
listen 80 default deferred;
server_name dima;
root /var/www/mysite/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;
keepalive_timeout 10;
}
我很困惑,为什么它的名字是' unicorn.testapp.sock' 。我在/etc/init.d/中检查了unicorn的init脚本,并且它是:unicorn_mysite。在/ tmp下我有unicorn.mysite.sock
谢谢。