silverstripe-cloudflare
, (*1)
Introduction
The intention of this module is to relieve the double-handling required when updating any of your pages within the CMS of SilverStripe while being behind Cloudflare. When a page is Published or Unpublished a call will be made to the relevant Cloudflare endpoint to clear the cache of the URL/Page you just published/unpublished., (*2)
This allows you to see your changes instantly in the preview window without having to worry about logging into the Cloud Flare dashboard to purge the cache yourself., (*3)
Cloudflare allows you to have multiple domains registered under a single account. This module is versatile in the sense that it will automatically detect which Zone ID is to be used alongside the domain that this module is installed on. Therefore beyond the two configuration settings required below there is no additional setup required. You can "plug and play" this module in as many locations as you want which means you don't have to worry about tracking down the relevant Zone ID (you can only get it via the API)., (*4)
Remember: Always keep your API authentication details secure. If you are concerned with your credentials being on someone else's machine; have them set up their own Cloudflare account., (*5)
Note: The detected Zone ID will always be shown in the SilverStripe Administration panel whilst viewing the "Cloudflare" menu item, (*6)
Features
- Dynamic Zone ID Detection
- Intelligent Purging
- If you modify the title or URL of any page: All cache for the zone will be purged.
- If you modify the contents of any page: Only the cache for that page will be purged.
- If you modify any page that has a parent, the page you modified and all of it's parents will be purged too.
- Manual Purging
- The administration area for this module allows you to either purge all css files, all javascript files, all image files or ... everything.
Installation
This module only supports installation via composer:, (*7)
composer require steadlane/silverstripe-cloudflare
Run /dev/build
afterwards and ?flush=1
for good measure for SilverStripe to become aware of this module, (*8)
Configuration
Configuration for this module is minimal, you need only define two constants in mysite/_config.php
, (*9)
define('CLOUDFLARE_AUTH_EMAIL', 'mycloudflare@example.com.au');
define('CLOUDFLARE_AUTH_KEY', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ');
Or alternatively, define environment variables in .env
, (*10)
CLOUDFLARE_AUTH_EMAIL="mycloudflare@example.com.au"
CLOUDFLARE_AUTH_KEY="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Cache Rules
It is recommended that you add the below to your Cloudflare Cache Rules as no-cache
, (*11)
Rule |
Comments |
example.com.au/*stage=Stage* |
It is outside the scope of this module to handle cache purging for drafts. Drafts should never need to be cached as they're not usable on the front end |
example.com.au/Security/* |
Prevents caching of the login page etc |
example.com.au/admin/* |
Prevents caching of the Administrator Panel |
example.com.au/dev/* |
Prevents caching of the development tools |
, (*12)
Contributing
If you feel you can improve this module in any way, shape or form please do not hesitate to submit a PR for review., (*13)
Troubleshooting and FAQ
Q. The SS Cloudflare administrator section is blank!
A. If the Cloudflare administration panel isn't loading correctly, a quick ?flush=1
will resolve this issue., (*14)
Q. The SS Cloudflare footer always says "Zone ID: UNABLE TO DETECT".
A. This module dynamically retrieves your Zone ID by using the domain you have accessed the website with. Ensure this domain is correctly registered under your Cloudflare account. If the issue persists, please open a ticket in our issue tracker and provide as much information you can., (*15)
Bugs / Issues
To report a bug or an issue please use our issue tracker., (*16)
License
This module is distributed under the BSD-3 Clause license., (*17)