helmet csp
788 ワード
app.use(
helmet({
contentSecurityPolicy: {
directives: {
...helmet.contentSecurityPolicy.getDefaultDirectives(),
'img-src': ["'self'", process.env.AWS_S3_IMAGE_URL],
// AWS_S3_IMGAGE_URL : 허용할 이미지 소스의 주소
},
},
})
);
https://stackoverflow.com/questions/65295213/allowing-s3-images-with-npm-helmetを参照Reference
この問題について(helmet csp), 我々は、より多くの情報をここで見つけました https://velog.io/@dakim/helmet-cspテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol