assume that nginx is on the a.com server
return the content after http://b.com/a.mp4
agent when you want to access http://a.com?URL=http://b.com/a.mp4
how should the configuration file be written
location ~* ^/_proxy/(.*)$ {
proxy_pass $1;
}
neither