我的目标是让 Laravel 安装与作为静态内容生成的 Nuxt 应用程序一起运行。
当位置以 . 开头时,我希望 Laravel 可用/api
。这按预期工作。
对于任何其他请求,我想让 Nginx 从另一个文件夹中为我提供静态内容。
root /var/www/html/public/dist;
我可以通过在第 18 行 ( )更改文档根目录并将以下配置更改为下面try_files
配置中的状态来实现这一点。
我试着换掉root
,alias
这给了我一些时髦的结果。我从 Nginx 收到 500 服务器响应,错误日志中有以下输出:
2020/09/29 13:28:17 [error] 7#7: *3 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 172.21.0.1, server: _, request: "GET /my/fake/url HTTP/1.1", host: "localhost"
172.21.0.1 - - [29/Sep/2020:13:28:17 +0000] "GET /claims/creat HTTP/1.1" 500 580 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36" "-"
我有以下配置(在 Docker 容器内运行)。
server {
listen 80 default_server;
root /var/www/html/public;
index index.html index.htm index.php;
server_name _;
charset utf-8;
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; }
error_page 404 /index.php;
location / {
alias /var/www/html/public/dist;
try_files $uri $uri/ /index.html;
error_page 404 /400.html;
}
location ~ /api {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
我不完全确定有什么区别,这也让我质疑我是否应该使用alias
或root
在我的情况下,我希望能在理解这一点方面提供一些帮助。