The picture of in external site does not display in revers proxy

Hi all:

I met a problem and do a google search and find nothing.

  1. The topology is :
  1. nginx actes as a reverse proxy for www.abc.com
  2. www.abc.com/index.html, it is embedded a picture in the index.html;
  3. The picture should get from
    att.ab.com/att.php?p.874.1578428.258.jpg.
  4. Access www.abc.com/index.html, the only issue is that the picture
    does
    not display/
  1. the configuration is as following:
    server {
    listen 80;
    server_name www.abc.com;

                     location / {
                             proxy_pass http://200.200.200.10;
                             proxy_redirect off;
                             proxy_buffering off;
                             proxy_set_header Host $host;
                             proxy_set_header X-Real-IP 
    

$remote_addr;
proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;
client_max_body_size 50m;
client_body_buffer_size 256k;
}

  1. Anyone can give me some help?

I am very appreciated your help.
Thanks

NextHop

BTW: NGINX has compiled the http_referer_module.

thanks

Anyone can give a help ?

thanks
NextHop