実現したいこと
EC2でLaravelプロジェクトをデプロイしようとしています。Laravelのバージョンは9を使用しています。
発生している問題・分からないこと
nginxの設定ファイルの、おそらくserver{}内が間違っていると思いますが、どのように修正したらよいのか分かりません。
エラーメッセージ
error
1現状でパブリックIPアドレスからページを開くと「File Not Found」と出てくる状況です。
該当のソースコード
nginx.conf
1# For more information on configuration, see:2# * Official English Documentation: http://nginx.org/en/docs/3# * Official Russian Documentation: http://nginx.org/ru/docs/4 5user nginx;6worker_processes auto;7error_log /var/log/nginx/error.log;8pid /run/nginx.pid;9 10# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.11include /usr/share/nginx/modules/*.conf;12 13events {14 worker_connections 1024;15}16 17http {18 log_format main '$remote_addr - $remote_user [$time_local] "$request" '19 '$status $body_bytes_sent "$http_referer" '20 '"$http_user_agent" "$http_x_forwarded_for"';21 22 access_log /var/log/nginx/access.log main;23 24 sendfile on;25 tcp_nopush on;26 tcp_nodelay on;27 keepalive_timeout 65;28 types_hash_max_size 4096;29 30 include /etc/nginx/mime.types;31 default_type application/octet-stream;32 33 # Load modular configuration files from the /etc/nginx/conf.d directory.34 # See http://nginx.org/en/docs/ngx_core_module.html#include35 # for more information.36 include /etc/nginx/conf.d/*.conf;37 38 server {39 listen 80;40 listen [::]:80;41 server_name ec2-13-114-64-132.ap-northeast-1.compute.amazonaws.com;42 root /var/www/lev-laravel/public;43 44 add_header X-Frame-Options "SAMEORIGIN";45 add_header X-XSS-Protection "1; mode=block";46 add_header X-Content-Type-Options "nosniff";47 48 index index.php;49 50 charset utf-8;51 52 location / {53 try_files $uri $uri/ /index.php?$query_string;54 }55 56 location = /favicon.ico { access_log off; log_not_found off; }57 location = /robots.txt { access_log off; log_not_found off; }58 59 error_page 404 /index.php;60 61 location ~ \.php$ {62 fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;63 fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;64 include fastcgi_params;65 }66 67 location ~ /\.(?!well-known).* {68 deny all;69 }70 }71 72# Settings for a TLS enabled server.73#74# server {75# listen 443 ssl http2;76# listen [::]:443 ssl http2;77# server_name _;78# root /usr/share/nginx/html;79#80# ssl_certificate "/etc/pki/nginx/server.crt";81# ssl_certificate_key "/etc/pki/nginx/private/server.key";82# ssl_session_cache shared:SSL:1m;83# ssl_session_timeout 10m;84# ssl_ciphers PROFILE=SYSTEM;85# ssl_prefer_server_ciphers on;86#87# # Load configuration files for the default server block.88# include /etc/nginx/default.d/*.conf;89#90# error_page 404 /404.html;91# location = /40x.html {92# }93#94# error_page 500 502 503 504 /50x.html;95# location = /50x.html {96# }97# }98 99}
試したこと・調べたこと
上記の詳細・結果
Laravelの公式サイトや、Qiitaなど確認しました。
「location ~ .php${}」内の修正が必要そうですが、そもそもどこが間違っているのかも曖昧な状況です。
初めてのアプリ開発で、調べ方のコツも含めて全体的に分からないことばかりで恐縮ですが、教えていただけますでしょうか。
よろしくお願いいたします。
補足
初心者マークを付け忘れてしまいました。
0 コメント