如何使用Nginx代理特定图像

时间:2019-03-06 20:44:11

标签: nginx proxy proxypass

我有这个网址

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

保持不变

要在此位置放置什么内容,您会怎么做?

1 个答案:

答案 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;
    }
}