EC2でnginxが起動できない
発生している問題・エラー
主にこちらの記事を参照してローカルで制作したRailsアプリのデプロイを目指しています。
記事の順序のままnginxの再起動を試みたところ
$ sudo service nginx restart
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
と表示されました。
エラーの確認をしたところ
$ sudo nginx -t
nginx: [emerg] host not found in upstream "unicorn_server" in /etc/nginx/conf.d/アプリ名.conf:28
nginx: configuration file /etc/nginx/nginx.conf test failed
とあるので設定ファイルの28行目を確認しても参考にしている記事との差異がなく、どう手をつければいいのか困っています😭
etc/nginx/conf.d/アプリ名.conf
error_log /var/www/rails/アプリ名/log/nginx.error.log;
access_log /var/www/rails/アプリ名/log/nginx.access.log;
upstream unicorn {
server unix:/var/www/rails/アプリ名/tmp/sockets/unicorn.sock fail_timeout=0;
}
server {
listen 80;
client_max_body_size 4G;
server_name アプリのElastic IP;
keepalive_timeout 5;
# Location of our static files
root /var/www/rails/アプリ名/public;
location ~ ^/assets/ {
root /var/www/rails/アプリ名/public;
}
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://unicorn_server; #28行目です
break;
}
}
error_page 500 502 503 504 /500.html;
location = /500.html {
root /var/www/rails/アプリ名/public;
}
}
どなたかご教授いただけばと思います。よろしくお願いいたします🙇♂️
解決済み
etc/nginx/conf.d/アプリ名.conf
upstream unicorn {
server unix:/var/www/rails/アプリ名/tmp/sockets/unicorn.sock fail_timeout=0;
}
こちらを...
etc/nginx/conf.d/アプリ名.conf
upstream unicorn_server {
server unix:/var/www/rails/アプリ名/tmp/sockets/.unicorn.sock fail_timeout=0;
}
表記し直しました、すぐ起動できました😲
コピペをしたからって何かの拍子で消えていたりする可能性を確認しなかったせいです。反省します。
まずは全体の確認をするように心がけます。
0