discoverlunar/craft-imager-x-azure-blob-storage 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

discoverlunar/craft-imager-x-azure-blob-storage

最新稳定版本:2.0.0

Composer 安装命令:

composer require discoverlunar/craft-imager-x-azure-blob-storage

包简介

External storage driver for Imager X that integrates with Microsoft Azure Blob Storage

README 文档

README

This is an external storage driver for Imager X that uploads your Imager X transforms to Microsoft Azure Blob Storage.

Requirements

This plugin is compatible with Craft CMS 3, 4 and 5, and Imager X 3.0 or later. External storages are only available in the Pro edition of Imager X.

Installation

To install the plugin, follow these instructions:

  1. Install with composer via composer require discoverlunar/craft-imager-x-azure-blob-storage from your project directory.
  2. Install the plugin in the Craft Control Panel under Settings > Plugins, or from the command line via ./craft install/plugin craft-imager-x-azure-blob-storage.

Configuration

Configure the storage driver by adding new key named azure to the storagesConfig config setting in your imager-x.php config file, with the following configuration:

'storageConfig' => [
    'azure' => [
        'endpoint' => '',
        'connectionString' => '',
        'container' => '',
        'folder' => '',
        'requestHeaders' => [],
    ]
],

Enable the storage driver by adding the key azure to Imager's storages config setting:

'storages' => ['azure'],

Here's an example config, note that the endpoint has to be a complete URL with scheme, and as always you need to make sure that imagerUrl is pointed to the right location:

'imagerUrl' => 'https://foo.blob.core.windows.net/site/imager/',
'storages' => ['azure'],
'storageConfig' => [
    'azure'  => [
        'endpoint' => 'https://foo.blob.core.windows.net/site/',
        'connectionString' => 'MY_CONNECTION_STRING',
        'container' => 'MY_CONTAINER',
        'folder' => 'imager',
        'requestHeaders' => [],
    ]
],

Also remember to always empty your Imager transforms cache when adding or removing external storages, as the transforms won't be uploaded if the transform already exists in the cache.

Price, license and support

This plugin continues the work done in paragonn/craft-imager-x-azure-blob, which wasn't updated to support Craft CMS 4 and later Craft CMS 5. As before, the plugin is released under the MIT license. It requires Imager X Pro, which is a commercial plugin available in the Craft plugin store.

统计信息

  • 总下载量: 112
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2025-02-24