mwikala / linode-s3
This plugin provides Linode Object Storage integration for Craft CMS
Installs: 4 895
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 5
Open Issues: 2
Type:craft-plugin
Requires
- php: ^8.0
- craftcms/cms: ^4.0.0-beta.4
- craftcms/flysystem: ^1.0.0-beta.2
- league/flysystem-aws-s3-v3: ^3.0.0
Requires (Dev)
- craftcms/rector: dev-main
README
Linode Object Storage for Craft CMS
This plugin provides a Linode Object Storage integration for Craft CMS.
Requirements
This plugin requires Craft CMS 3.1.0 or later.
Installation
You can install this plugin from the Plugin Store or with Composer.
From the Plugin Store
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.
With Composer
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
Setup
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”.
Environment Variables
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=
License & Support
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