File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ if (req.url.ext ~ "(?i)^(jpe?g|png|gif|mp4|mp3|gz|svg|avif|webp)$") {
15
15
16
16
# Remove all headers we don't care to be passing around. It does not remove protected headers. More details
17
17
# https://developer.fastly.com/reference/vcl/functions/headers/header-filter-except/
18
- header.filter_except(req, " Accept-Encoding" );
18
+ # This causes a 301, need to investigate why first.
19
+ #header.filter_except(req, "Accept-Encoding");
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ unset beresp.http.x-amz-request-id;
3
3
unset beresp.http.x-amz-meta-server-side-encryption ;
4
4
unset beresp.http.x-amz-server-side-encryption ;
5
5
unset beresp.http.x-amz-bucket-region ;
6
- unset beresp.http.x-amzn-requestid ;
6
+ unset beresp.http.x-amzn-request-id ;
7
7
8
8
# Set the Caching policy for all files
9
9
set beresp.http.Cache-Control = " public, max-age=315576000, immutable" ;
You can’t perform that action at this time.
0 commit comments