向minio上传文件报错:The request signature we calculated does not match the signature you provided

提问者:帅平 问题分类:运维

目前在内网搭建了一个minio服务,然后通过nginx进行转发,配置了对应的serviceaccount,核对了程序和minio服务上的access-key和secret-key。一模一样,向minio上传文件的时候会报错,提示: The request signature we calculated does not match the signature you provided. Check your key and signing method. 请问怎么处理。

1 个回答
Rae
Rae 管理员

1、确认下nginx转发的是minio的9000端口。

2、确认下nginx的location配置有没有加上proxy_set_header,示例如下:

 location / {
        proxy_set_header Host $http_host;
        proxy_pass http://192.168.1.252:9000;
    }

发布于:5个月前 (10-11)
我来回答