Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.33 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.33 KB

BunnyMate

Keeping your bunny finely-tuned for a hoppy life, mate!

Logo

Description

BunnyMate integrates BunnyCDN with Craft CMS.

Requirements

This plugin requires Craft CMS 5.0.0 or later.

Disclaimer

This is a private plugin, made for Værsågod and friends.

Migrating from vaersaagod/bunny

  1. ddev craft plugin/uninstall bunny && ddev composer remove vaersaagod/bunny
  2. ddev composer require vaersaagod/bunnymate && ddev craft plugin/install _bunnymate
  3. Rename config/bunny.php to config/_bunnymate.php

Configuration

<?php

return [
    'pullingEnabled' => true,
    'pullZones' => [
        'default' => [
            'hostname' => 'https://awesome-project.b-cdn.net',
            'enabled' => true,
        ],
    ],
    'defaultPullZone' => 'default',
];

Usage

BunnyMate provides a global Twig function bunnyPullUrl(), which can be used to generate a Bunny CDN pullzone URL:

{% set bunnyUrl = bunnyPullUrl(asset) %}
{% set bunnyUrl = bunnyPullUrl(siteUrl('lorem/ipsim') %}
{% set bunnyUrl = bunnyPullUrl('lorem/ipsum') %}
{% set bunnyUrl = bunnyPullUrl('/lorem/ipsum', 'anotherZone') %}