我正在尝试为存储在/storage/
文件夹中的正在提取的文件的任何响应自动添加一个标头。
每当我使用这个位置块:
location /storage/ {
add_header 'Access-Control-Allow-Origin' '*';
}
我收到404回复:
HTTP/1.1 404 Not Found
Server: nginx/1.19.4
Date: Tue, 17 Nov 2020 20:44:52 GMT
Content-Type: image/jpeg
Content-Length: 28300
Connection: keep-alive
ETag: "5fb37909-6e8c"
一旦我评论出位置块条件:
#location /storage/ {
add_header 'Access-Control-Allow-Origin' '*';
#}
它正确地添加了标题
HTTP/1.1 200 OK
Server: nginx/1.19.4
Date: Tue, 17 Nov 2020 20:46:12 GMT
Content-Type: image/jpeg
Content-Length: 28300
Last-Modified: Tue, 17 Nov 2020 07:17:29 GMT
Connection: keep-alive
ETag: "5fb37909-6e8c"
Access-Control-Allow-Origin: *
Accept-Ranges: bytes
为了排除任何权限问题,我将试图获取的文件权限(图像(设置为777。
如果有人想浏览完整的nginx.conf,这就是:
server {
listen 127.0.0.1:80 default_server;
root /;
charset utf-8;
client_max_body_size 128M;
location /storage/ {
add_header Access-Control-Allow-Origin *;
}
location /41c270e4-5535-4daa-b23e-c269744c2f45/ {
internal;
alias /;
try_files $uri $uri/;
}
location / {
rewrite ^ "/Users/chrisbreuer/.composer/vendor/laravel/valet/server.php" last;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log "/Users/chrisbreuer/.config/valet/Log/nginx-error.log";
error_page 404 "/Users/chrisbreuer/.composer/vendor/laravel/valet/server.php";
location ~ [^/].php(/|$) {
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass "unix:/Users/chrisbreuer/.config/valet/valet.sock";
fastcgi_index "/Users/chrisbreuer/.composer/vendor/laravel/valet/server.php";
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME "/Users/chrisbreuer/.composer/vendor/laravel/valet/server.php";
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location ~ /.ht {
deny all;
}
}
任何帮助都将不胜感激,因为我不确定它为什么会抛出404,当它可以在浏览器中查看时,其他标题(Content-Type
,Content-Length
(正在被正确添加,表明图像是";找到";。
非常感谢!
编辑1
我不确定这是否有什么不同,但";存储";文件夹是一个符号链接。
编辑2
nginx错误:
2020/11/17 12:45:50 [error] 64990#0: *1 open() "/storage/media/1/1/turtle.jpg" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "HEAD /storage/media/1/1/turtle.jpg HTTP/1.1", host: "my-api.test"
当我尝试访问浏览器my-api.test/storage/media/1/1/turtle.jpg
中的URL时,它会返回图像,而不是404。
服务器的根目录设置为/
。
因此,当您指定/storage/location时,它会在/storage/media/1/1/turtle.jpg
中查找一个文件,该文件打印在日志中,但由于文件不在位置而失败。
当您删除此位置块时,它将使用具有重写命令的location /
。
因此,如果您修改存储位置并在其中包含适当的重写指令,这应该会起作用。注意,这需要一些调整才能做到这一点-请参阅此处的文档:https://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite
最后,静态内容的最佳实践是根本不使用重写,而是为其在磁盘上确定适当的位置,并修改root
指令以匹配该位置并消除重写。这将提高性能和可读性。