我有这个网址
https://example.com/image/test.jpg
我想用Nginx代理此URL上的图像
https://cdn0.tnwcdn.com/wp-content/blogs.dir/1/files/2018/02/google-pacman-796x419.jpg
URL不变,即与此https://example.com/image/test.jpg
保持不变要在此位置放置什么内容,您会怎么做?
答案 0 :(得分:0)
您可以在nginx配置中使用proxy_pass
参数:
server {
# ...
server_name example.com;
# ...
location /image/test.jpg {
proxy_pass https://cdn0.tnwcdn.com/wp-content/blogs.dir/1/files/2018/02/google-pacman-796x419.jpg;
}
}