我的目标是让 Laravel 安装与作为静态内容生成的 Nuxt 应用程序一起运行。
我希望当位置以 开头时 Laravel 可用/api
。这按预期工作。
对于任何其他请求,我希望 Nginx 从另一个文件夹内部为我提供静态内容。
我可以通过更改第 18 行的文档根目录(root /var/www/html/public/dist;
)并将以下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
,并且我希望得到一些帮助来理解这一点。
答案1
错误消息中的问题出在你的try_files
,而不是你的root
或alias
。你尝试加载不存在的 URL 路径,在正常配置中,nginx 只会提供 404 或尝试加载你的 Web 应用的前端控制器。但是你的try_files
告诉它改为服务/index.html
。因此它重新开始尝试加载/index.html
并最终到达相同的try_files
,但该文件也不存在,因此它会给出错误,rewrite or internal redirection cycle while internally redirecting to "/index.html"
因为它已经在尝试加载/index.html
。
您应该首先修复try_files
。示例:
try_files $uri $uri/ =404; # static site
try_files $uri $uri/ /index.php; # PHP front controller
现在,回到你的第二个问题。
root
指定实际的文档根目录,即文件系统上用于提供静态文件的目录,它与 URL 路径相对应/
。例如,如果您有root /var/www/html/public
并请求 URL,/css/myapp.css
那么它将映射到文件路径/var/www/html/public/css/myapp.css
。
alias
允许您将根目录下的某个 URL 路径重新映射到其他目录,以便您可以从其他地方提供静态文件。例如,对于 ,location /static/
您可以定义。在这种情况下,中的 URL 路径部分将被替换,而alias /var/www/html/files/
不是转到 的子目录。因此变为,并且 的请求将尝试加载文件而不是。root
alias
location
/static/
/var/www/html/files/
/static/myapp.css
/var/www/html/files/myapp.css
/var/www/html/public/css/myapp.css
alias
使用with没有意义location /
。如果需要在此处定义不同的文件路径,请使用root
(但请注意,这可能是反模式)。