rewrite
location ~ ^/file/ {
rewrite "^/file/(.*)$" /$1 break;
#proxy_pass_request_headers on;
proxy_pass http://172.25.114.5:19000; # minio服务地址
}
实现效果:访问:https://file.zt.com/file/zt-test/a.png
实际访问:http://172.25.114.5:19000/zt-test/a.png