Hi all:
I met a problem and do a google search and find nothing.
- The topology is :
- nginx actes as a reverse proxy for www.abc.com
- www.abc.com/index.html, it is embedded a picture in the index.html;
- The picture should get from
att.ab.com/att.php?p.874.1578428.258.jpg. - Access www.abc.com/index.html, the only issue is that the picture
does
not display/
-
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;
}
- Anyone can give me some help?
I am very appreciated your help.
Thanks
NextHop