I have a mp3 file on my amazon cloud drive:
How can I make nginx proxy_pass to play this audio on chrome?
I need to get content range header, then send the content-range header to proxy server.
Configuration:
location /match/here.mp3 {
proxy_pass https://content-na.drive.amazonaws.com/cdproxy/templink/uIBwvxaYbNEQFB8gUjIgu6h9RjLdu18nKGxterGfh9MFfJttb;
}
And the link is: http://46.101.231.60/match/here.mp3
Simple when I enter this link (http://46.101.231.60/match/here.mp3) on chrome the audio is not playing. How can I fix it?