【发布时间】:2020-08-21 17:52:20
【问题描述】:
我刚刚在 AWS Elastic beanstalk 上部署了一个新的 laravel 7 应用程序。我注意到他们将 Apache 服务器更改为 Nginx 服务器。
https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platform-history-php.html
这是我的 api 后端 URL:http://mappab-api-staging.mappab.com.br/
这是登录路径:http://mappab-api-staging.mappab.com.br/login - 404 状态。
你遇到过同样的问题吗?我该如何解决?
我放在 /etc/nginx/conf.d/elasticbeanstalk/ 的 php.conf 是:
root /var/www/html/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ /\.ht {
deny all;
}
location ~ /.well-known {
allow all;
}
location ~ \.(php|phar)(/.*)?$ {
fastcgi_split_path_info ^(.+\.(?:php|phar))(/.*)$;
fastcgi_intercept_errors on;
fastcgi_index index.php;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REQUEST_SCHEME $scheme;
fastcgi_param HTTPS $https if_not_empty;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass php-fpm;
}
【问题讨论】:
-
如果我猜的话,你还没有编辑 nginx 配置来使用 Laravel 并且仍然依赖 htaccess? htaccess 是一个 Apache 配置文件。 Nginx 根本不阅读或使用它。如果您搜索“nginx laravel setup”,您会发现很多如何设置默认配置的示例。如果您的 htaccess 中有任何自定义规则,您也需要将它们迁移到 nginx 配置文件中。
标签: php amazon-web-services nginx laravel-7