最近 AWS 开始使用 Amazon Linux 2 分发 Elastic Beanstalk PHP 环境,它放弃了 apache 以支持 Nginx,我一直在尝试正确配置我的 Laravel 项目以使其正常工作,我过去只需要添加一些 .htaccess 配置即可是吗,在 Nginx 上我似乎无法弄清楚如何让我的应用程序工作,我的第一个问题是反向代理端口,我通过将 PORT 环境变量设置为 80 来修复它,但是当我尝试访问任何路由时除了 / 之外的 URL,它给了我一个 404 Not Found 错误。
所以我尝试将 .ebextension/Nginx/nginx.conf 添加到我的项目中,其中包含以下内容:
user nginx;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
worker_processes auto;
worker_rlimit_nofile 33282;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
include conf.d/*.conf;
map $http_upgrade $connection_upgrade {
default "upgrade";
}
server {
listen 80 default_server;
root /var/app/current/public;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/www.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
}
但它没有用,我试图检查实例上是否应用了配置,但 /etc/Nginx/Nginx.conf 没有改变。
如何通过 .ebextensions 配置 Elastic Beanstalk PHP Amazon Linux 2 以使 Nginx 与无状态 Laravel 应用程序一起工作?
斯蒂芬大帝
慕田峪9158850