前提・実現したいこと
先日完成したRailsアプリケーションをデプロイしようとしたところNginxでエラーが起こってしまいました。対処法を調べても見つからなかったので質問させていただきます。
Nginx + Unicorn + Capistranoを利用した自動デプロイの途中です。
bundle exec cap production deploy
をすると、偶に DEBUG [18a39419] Finished in 0.614 seconds with exit status 1 (failed).
のようにfailedと言われる部分もありましたが途中でエラーで中断されることもなく最後まで進みました。
いざIPアドレスにアクセスしてみるとWe're sorry, but something went wrong.
の文字、、、。
$ ps auxwww | grep unicorn
でunicorn masterをkillして再デプロイしても変わらず、mysqlを見てみても
$ sudo service mysqld restart Stopping mysqld: [ OK ] Starting mysqld: [ OK ]
異常はなし。
発生している問題・エラーメッセージ
nginxの様子を確かめてみると
[Stelle@ip-x-x-x-x ~]$ nginx -t nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied) 2020/07/06 06:51:02 [warn] 12762#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:5 2020/07/06 06:51:02 [emerg] 12762#0: "client_max_body_size" directive is duplicate in /etc/nginx/conf.d/stelle2.conf:5 nginx: configuration file /etc/nginx/nginx.conf test failed
と言われたので$ sudo cat /var/log/nginx/error.log
をしてみると
2020/07/06 04:42:57 [emerg] 12186#0: "client_max_body_size" directive is duplicate in /etc/nginx/conf.d/stelle2.conf:5
といわれ、/etc/nginx/conf.d
からsudo rm stelle2.conf
をしてもう一度$ sudo cat /var/log/nginx/error.log
しても同じく
2020/07/06 04:42:57 [emerg] 12186#0: "client_max_body_size" directive is duplicate in /etc/nginx/conf.d/stelle2.conf:5
と言われるだけでした。。。
該当ファイル
/etc/nginx/nginx.conf
# For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; index index.html index.htm; server { listen 80 default_server; listen [::]:80 default_server; server_name localhost; root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { } # redirect server error pages to the static page /40x.html # error_page 404 /404.html; location = /40x.html { } # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ .php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ .php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /.ht { # deny all; #} } # Settings for a TLS enabled server. # # server { # listen 443 ssl http2 default_server; # listen [::]:443 ssl http2 default_server; # server_name _; # root /usr/share/nginx/html; # # ssl_certificate "/etc/pki/nginx/server.crt"; # ssl_certificate_key "/etc/pki/nginx/private/server.key"; # # It is *strongly* recommended to generate unique DH parameters # # Generate them with: openssl dhparam -out /etc/pki/nginx/dhparams.pem 2048 # #ssl_dhparam "/etc/pki/nginx/dhparams.pem"; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 10m; # ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # ssl_ciphers HIGH:SEED:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!RSAPSK:!aDH:!aECDH:!EDH-DSS-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA:!SRP; # ssl_prefer_server_ciphers on; # # # Load configuration files for the default server block. # include /etc/nginx/default.d/*.conf; # # location / { # } # # error_page 404 /404.html; # location = /40x.html { # } # # error_page 500 502 503 504 /50x.html; # location = /50x.html { # } # } }
本命である/etc/nginx/conf.d/Stelle.conf
です
error_log /var/www/rails/stelle/current/log/nginx.error.log; access_log /var/www/rails/stelle/current/log/nginx.access.log; client_max_body_size 2G; upstream app_server { server unix:/var/www/rails/stelle/current/tmp/sockets/.unicorn.sock fail_timeout=0; } server { listen 80; server_name 3.xxx.xxx.xx; keepalive_timeout 5; root /var/www/rails/stelle/current/public; try_files $uri/index.html $uri.html $uri @app; location @app { # HTTP headers 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; } error_page 500 502 503 504 /500.html; location = /500.html { root /var/www/rails/stelle/current/public; } }
config.ru
です
# This file is used by Rack-based servers to start the application. require_relative 'config/environment' run Rails.application
エラーの意味だけでも教えていただけたら幸いです。。。
回答1件
あなたの回答
tips
プレビュー