前提・実現したいこと
実行環境:AWS EC2, nginx/1.16.1, PHP7.3.16, Laravel6
AWS EC2にてLaravelプロジェクト内のpublic/index.phpファイルが表示されず、nginxの404 not foundが表示されてしまいます。
また、publicフォルダに配置したphpinfo.phpとindex.htmlは正しく表示されました。
/etc/nginx/nginx.confファイルは以下のように記述してあります。
nginx.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; server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /var/www/laravel-bool-reviw/public; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / { try_files $uri $uri/ /index.php?query_string; } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } }
確認したこと
web.phpのルーティング設定は確認しています。
ディレクトリパーミッションは以下のようになっています。
drwxrwxr-x 2 ec2-user ec2-user 89 May 11 09:54 css -rw-rw-r-- 1 ec2-user ec2-user 0 May 5 06:22 favicon.ico drwxrwxr-x 2 ec2-user ec2-user 55 May 11 09:54 images -rw-r--r-- 1 root root 128 May 13 22:12 index.html -rw-rw-r-- 1 ec2-user ec2-user 1823 May 5 06:22 index.php drwxrwxr-x 2 ec2-user ec2-user 64 May 11 09:54 js -rw-rw-r-- 1 ec2-user ec2-user 35 May 5 06:22 mix-manifest.json -rw-rw-r-- 1 ec2-user ec2-user 19 May 12 08:53 phpinfo.php -rw-rw-r-- 1 ec2-user ec2-user 24 May 5 06:22 robots.txt lrwxrwxrwx 1 ec2-user ec2-user 46 May 5 17:02 storage -> /var/www/laravel-boo l-reviw/storage/app/public -rw-rw-r-- 1 ec2-user ec2-user 1194 May 5 06:22 web.config
/var/log/nginx/error.logには以下のようなエラーメッセージが記述されていました。
2020/05/xx xx:xx:xx [error] 3422#0: *47 open() "/var/www/laravel-bool-reviw/public/50x.html" failed (2: No such file or directory), client: xxx.xx.xx.xxx, server: _, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/www.sock", host: "xx.xxx.xxx.xxx:xx"
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。