Skip to content

Fork of @strapi/provider-upload-aws-s3 with endpoint modifications for the infomaniak cloud.

License

Notifications You must be signed in to change notification settings

kahrpatrick/strapi-provider-upload-infomaniak-swift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

strapi-provider-upload-infomaniak-swift

Forked from: @strapi/provider-upload-aws-s3

Resources

Links

Installation

# using yarn
yarn add git+https://github.com/kahrpatrick/strapi-provider-upload-infomaniak-swift.git#main

Configurations

Your configuration is passed down to the provider. (e.g: new AWS.S3(config)). You can see the complete list of options here

See the using a provider documentation for information on installing and using a provider. And see the environment variables for setting and using environment variables in your configs.

Provider Configuration

./config/plugins.js

module.exports = ({ env }) => ({
  // ...
  upload: {
    config: {
      provider: 'strapi-provider-upload-infomaniak-swift',
      providerOptions: {
        accessKeyId: env('S3_ACCESS_KEY_ID'),
        secretAccessKey: env('S3_ACCESS_SECRET'),
        region: env('S3_REGION', 'us-east-1'),
        params: {
          Bucket: env('S3_BUCKET'),
        },
        endpoint: env('S3_ENDPOINT'),
        access_endpoint: env('S3_ACCESS_ENDPOINT'),
        s3ForcePathStyle: true,
      },
    },
  },
  // ...
});

Security Middleware Configuration

Due to the default settings in the Strapi Security Middleware you will need to modify the contentSecurityPolicy settings to properly see thumbnail previews in the Media Library. You should replace strapi::security string with the object bellow instead as explained in the middleware configuration documentation.

./config/middlewares.js

module.exports = [
  // ...
  {
    name: 'strapi::security',
    config: {
      contentSecurityPolicy: {
        useDefaults: true,
        directives: {
          'connect-src': ["'self'", 'https:'],
          'img-src': ["'self'", 'data:', 'blob:', '<projectID>.s3.pub1.infomaniak.cloud'],
          'media-src': ["'self'", 'data:', 'blob:', '<projectID>.s3.pub1.infomaniak.cloud'],
          upgradeInsecureRequests: null,
        },
      },
    },
  },
  // ...
];

Required AWS Policy Actions

These are the minimum amount of permissions needed for this provider to work.

"Action": [
  "s3:PutObject",
  "s3:GetObject",
  "s3:ListBucket",
  "s3:DeleteObject",
  "s3:PutObjectAcl"
],

About

Fork of @strapi/provider-upload-aws-s3 with endpoint modifications for the infomaniak cloud.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published