將 HTTP 安全標頭新增至 a CloudFront Functions 檢視器回應事件 - AWS SDK 程式碼範例

文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的 GitHub 範例。

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

將 HTTP 安全標頭新增至 a CloudFront Functions 檢視器回應事件

下列程式碼範例示範如何將 HTTP 安全標頭新增至 a CloudFront Functions 檢視器回應事件。

JavaScript
JavaScript 執行期 2.0 for CloudFront Functions
注意

還有更多 on GitHub。尋找完整的範例,並了解如何在 CloudFront Functions 範例儲存庫中設定和執行。

async function handler(event) { var response = event.response; var headers = response.headers; // Set HTTP security headers // Since JavaScript doesn't allow for hyphens in variable names, we use the dict["key"] notation headers['strict-transport-security'] = { value: 'max-age=63072000; includeSubdomains; preload'}; headers['content-security-policy'] = { value: "default-src 'none'; img-src 'self'; script-src 'self'; style-src 'self'; object-src 'none'; frame-ancestors 'none'"}; headers['x-content-type-options'] = { value: 'nosniff'}; headers['x-frame-options'] = {value: 'DENY'}; headers['x-xss-protection'] = {value: '1; mode=block'}; headers['referrer-policy'] = {value: 'same-origin'}; // Return the response to viewers return response; }