Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@nexide/strapi-provider-bunny
Advanced tools
Bunny.net Upload Provider for Strapi V4.
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.
Example
./config/plugins.js
module.exports = ({ env }) => ({
//...
upload: {
config: {
provider: '@nexide/strapi-provider-bunny',
providerOptions: {
api_key: env('BUNNY_API_KEY'),
storage_zone: env('BUNNY_STORAGE_ZONE'),
pull_zone: env('BUNNY_PULL_ZONE'),
region: env('BUNNY_REGION'),
},
},
},
//...
});
.env
BUNNY_API_KEY: Storage Password (Inside FTP & API Access).
BUNNY_STORAGE_ZONE: Storage Zone name.
BUNNY_REGION: Region Specified in Hostname (Inside FTP & API Access). eg: <REGION>.storage.bunnycdn.com
BUNNY_PULL_ZONE: Pull Zone URL.
Enter Pull Zone URL without trailing slash – https://<pull-zone-name>.b-cdn.net
.
Optionally add Storage Endpoint Url without trailing slash (read more)
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:', process.env.BUNNY_PULL_ZONE],
'media-src': [
"'self'",
'data:',
'blob:',
process.env.BUNNY_PULL_ZONE,
],
upgradeInsecureRequests: null,
},
},
},
},
// ...
];
FAQs
Bunny.net provider for Strapi upload
The npm package @nexide/strapi-provider-bunny receives a total of 13 weekly downloads. As such, @nexide/strapi-provider-bunny popularity was classified as not popular.
We found that @nexide/strapi-provider-bunny demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.