This plugin provides a Linode Object Storage integration for Craft CMS.
This plugin requires Craft CMS 3.1.0 or later.
You can install this plugin from the Plugin Store or with Composer.
Go to the Plugin Store in your project’s Control Panel and search for “Linode Object Storage”. Then click on the “Install” button in its modal window.
Open your terminal and run the following commands:
# go to the project directory
cd /path/to/my-project.test
# tell Composer to load the plugin
composer require mwikala/linode-s3
# tell Craft to install the plugin
./craft install/plugin linode-s3
To create a new asset file system for your Amazon S3 bucket, go to Settings → Filesystems, create a new filesystem, and set the Filesystem Type setting to “Linode S3”.
To allow you to setup different Buckets for different environments, you can set these handy environment variables in your .env
and .env.example
(so you don't forget them after pushing to source control):
# The Linode Object Storage Access Key with read/write access to Buckets
LINODE_S3_ACCESS_KEY=
# The Linode Object Storage Access Secret
LINODE_S3_SECRET=
# THE URL endpoint for your Buckets
LINODE_S3_ENDPOINT=
# The region your Object Storage bucket is in
LINODE_S3_REGION=
# The name of your bucket
LINODE_S3_BUCKET=
# The URL of the bucket
LINODE_S3_BUCKET_URL=
This plugin is released under the MIT license, meaning you can do whatever you please with it.
If you experience any issues with the plugin then open an issue here and I'll try get it fixed/answered whenever I have some free time