diff options
Diffstat (limited to 'src/media.rs')
-rw-r--r-- | src/media.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/media.rs b/src/media.rs index 0704f79..89d70e7 100644 --- a/src/media.rs +++ b/src/media.rs @@ -24,6 +24,9 @@ macro_rules! response_for { 31557600u32, )])); + // Allow CORS + client_resp.set_header(header::ACCESS_CONTROL_ALLOW_ORIGIN, "*"); + // Copy all of the relevant S3 headers. $resp.cache_control.map(|v| client_resp.set_header(header::CACHE_CONTROL, v)); $resp.content_disposition.map(|v| client_resp.set_header(header::CONTENT_DISPOSITION, v)); |