Socket
Book a DemoInstallSign in
Socket

@breezertwo/strapi-provider-upload-digitalocean

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@breezertwo/strapi-provider-upload-digitalocean

Digital ocean spaces provider for Strapi asset upload

latest
Source
npmnpm
Version
5.0.2
Version published
Maintainers
0
Created
Source

Strapi Upload Provider for Digital Ocean Spaces

  • This provider is a fork of AdamZikmund's strapi upload provider for Digital Ocean spaces.

This provider will upload to the space using the AWS S3 API. Strapi v5 ready and AWS Client SDK v3.

Parameters

  • key : Space access key
  • secret : Space access secret
  • endpoint : Base URL of the space (e.g. https://fra.digitaloceanspaces.com)
  • space : Name of the space in the Digital Ocean panel. (e.g. myspace)
  • directory : Name of the sub-directory you want to store your files in. (Optionnal - e.g. /example)
  • cdn : CDN Endpoint - URL of the cdn of the space (Optionnal - e.g. https://fra.cdn.digitaloceanspaces.com)

How to use

1. Install this package

npm i @breezertwo/strapi-provider-upload-digitalocean

2. Create or update config in ./config/plugins.js of your strapi project

module.exports = ({env}) => ({
  // ...
  upload: {
    config: {
      provider: "@breezertwo/strapi-provider-upload-digitalocean",
      providerOptions: {
        key: env('DO_SPACE_ACCESS_KEY'),
        secret: env('DO_SPACE_SECRET_KEY'),
        endpoint: env('DO_SPACE_ENDPOINT'),
        space: env('DO_SPACE_BUCKET'),
        region: env('DO_SPACE_REGION'),
        directory: env('DO_SPACE_DIRECTORY'),
        cdn: env('DO_SPACE_CDN'),
      }
    },
  },
  // ...
})

3. Create or modify .env and add Digital Ocean env variables.

DO_SPACE_ACCESS_KEY=
DO_SPACE_SECRET_KEY=
DO_SPACE_ENDPOINT=
DO_SPACE_BUCKET=
DO_SPACE_REGION=     #Optional (defaults to fra1)
DO_SPACE_DIRECTORY=  #Optional
DO_SPACE_CDN=        #Optional

4. Change security setting in middleware.js to allow image thumbnails beeing loaded in strapi dashboard

module.exports = ({ env }) => ({
  // ...
  {
    name: "strapi::security",
    config: {
      contentSecurityPolicy: {
        useDefaults: true,
        directives: {
          "connect-src": ["'self'", "https:"],
          "img-src": [
            "'self'",
            "data:",
            "blob:",
            "<you digital ocean space endpoint or cdn domain>",
          ],
          "media-src": [
            "'self'",
            "data:",
            "blob:",
            "<you digital ocean space endpoint or cdn domain>",
          ],
          upgradeInsecureRequests: null,
        },
      },
    },
  },
  // ...
})

Keywords

upload

FAQs

Package last updated on 07 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.