mirror of
https://github.com/p-stream/simple-proxy.git
synced 2026-01-11 20:10:35 +00:00
Merge pull request #10 from movie-web/dev
Add X-Final-Destination for 2embed
This commit is contained in:
commit
23c090fc15
1 changed files with 3 additions and 0 deletions
|
|
@ -102,6 +102,9 @@ async function handleRequest(oRequest, destination, iteration = 0) {
|
|||
// Append to/Add Vary header so browser will cache response correctly
|
||||
response.headers.append('Vary', 'Origin');
|
||||
|
||||
// Add X-Final-Destination header to get the final url
|
||||
response.headers.set('X-Final-Destination', oResponse.url);
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue