Strapi v4로 콘텐츠 보안 정책 지시문을 수정하고 AWS S3에 업로드하는 방법

MongoDB가 있는 Strapi V3에서 MariaDB/MySQL이 있는 Strapi V4로 마이그레이션할 때 이전 인스턴스와 동일한 구성으로 CMS의 새 인스턴스를 다시 구성해야 합니다.
문제는 두 버전 간에 (분명히) 변경된 몇 가지 사항과 @strapi/provider-upload-aws-s3 플러그인에 대한 이전 구성이 더 이상 작동하지 않는다는 것입니다.

글쎄요.

파일을 업로드하려고 하면 다음과 같이 표시됩니다.



하나의 이미지는 로컬로 업로드되고 다른 하나는 S3에 업로드되었으며, 내가 찾은 것은 구성이 작동하고 실제로 이미지가 AWS S3의 버킷에 업로드되고 있지만 CMS에서 표시를 거부한다는 것입니다.

그래서 Google에서 시간을 보낸 후 마침내 this GitHub issue 및 이 other issue에서 찾을 수 있는 해결책을 찾았습니다.
제 경우에는 지역을 s3 URL에 추가하기 위해 약간 조정해야 했습니다.

하지만 기본적으로 해야 할 일은 config/middlewares.js 파일을 다음 구성으로 업데이트하는 것입니다.

// From this:

module.exports = [
  'strapi::errors',
  'strapi::security',
  ... //rest of middlewares
];

// To this
module.exports = ({ env }) => [
  'strapi::errors',
  {
    name: 'strapi::security',
    config: {
      contentSecurityPolicy: {
        useDefaults: true,
        directives: {
          'connect-src': ["'self'", 'https:'],
          'img-src': [
            "'self'",
            'data:',
            'blob:',
            'res.cloudinary.com', // cloudinary images
            'lh3.googleusercontent.com', // google avatars
            'platform-lookaside.fbsbx.com', // facebook avatars
            'dl.airtable.com', // strapi marketplace
            `https://${env('AWS_BUCKET')}.s3.${env('AWS_REGION')}.amazonaws.com`
          ],
          'media-src': ["'self'", 'data:', 'blob:', `https://${env('AWS_BUCKET')}.s3.${env('AWS_REGION')}.amazonaws.com`],
          upgradeInsecureRequests: null,
        },
      },
    },
  },
  ... //rest of middlewares
];


그리고 이제 Strapi는 마침내 S3에서 업데이트된 파일로 작업해야 합니다.

Note
If you wonder why I had to add res.cloudinary.com and other domains, it's simply to allow icons and images to work in Strapi, like in the marketplace.

좋은 웹페이지 즐겨찾기