diff options
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | src/media.rs | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ # Based on https://alexbrand.dev/post/how-to-package-rust-applications-into-minimal-docker-containers/ -FROM rust:1.46.0 AS build +FROM rust:1.54.0 AS build MAINTAINER Jesse Morgan <jesse@jesterpm.net> 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)); |