使用nginx做图片代理
时间: 2023-05-12 18:05:12 浏览: 901
nginx 代理发布前端程序
可以使用nginx的location指令来实现图片代理,具体的配置可以参考以下示例代码:
location /images/ {
proxy_pass http://example.com/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
其中,/images/是代理的路径,http://example.com/是图片的源地址,$host、$remote_addr、$proxy_add_x_forwarded_for等是nginx的变量,用于设置代理请求的头部信息。
阅读全文