解決したいこと
laravelで質問投稿サイトを作っています。
質問画面の表示はできますが、質問の詳細画面に遷移すると404 Not Foundというエラー画面になります。
localでの質問詳細画面は以下です。
解決方法を教えていただけますでしょうか。
もしかするとcomposer updateをしてlaravelのversionを6.20.37から6.20.41にしたのが原因かもしれません。
また、circleCIでのテストは成功します。
発生している問題・エラー
2021/11/28 14:05:31 [error] 3314#0: *51 open() "/home/webapp/todo_app/public/50x.html" failed (2: No such file or directory),client: 10.0.0.212, server: _, request: "GET /questions/3 HTTP/1.1", upstream:"fastcgi://unix:/run/php-fpm/www.sock", host: "**.amazonaws.com", referrer: "**.amazonaws.com/"
該当するソースコード
nginx
1 default_type application/octet-stream; 2 include /etc/nginx/conf.d/*.conf; 3 4 server { 5 listen 80 default_server; 6 listen [::]:80 default_server; 7 server_name _; 8 root /home/webapp/todo_app/public; 9 10 # Load configuration files for the default server block. 11 include /etc/nginx/default.d/*.conf; 12 13 location / { 14 try_files $uri $uri/ /index.php?$query_string; 15 } 16 17 location ~ .(css|gif|ico|jpeg|jpg|js|pdf|png|svg|swf|zip|eot|otf|ttf|woff|woff2) { 18 expires 1y; 19 access_log off; 20 log_not_found off; 21 } 22 23 error_page 404 /404.html; 24 location = /40x.html { 25 } 26 27 error_page 500 502 503 504 /50x.html; 28 location = /50x.html { 29 } 30 } 31 32
自分で試したこと
nginx、php-fpmの再起動
###補足情報(FW/ツールのバージョンなど)
laravel/6.20.41
nginx/1.12.2
php-fpm/4.0.8
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。