Add origin timeout settings and brotli and gzip support for CloudFront configurations
To globally configure origin timeouts, you can use the following
origin_timeouts = {
keepalive_timeout = 60
read_timeout = 60
connection_attempts = 3
connection_timeout = 10
}
This can be overridden per function.
To enable brotli and gzip support, you can use the following
distribution = {
cache_policy = {
enable_accept_encoding_brotli = true
enable_accept_encoding_gzip = true
}
}
Full Changelog: v3.1.0...v3.2.0