Serve plain files
Overview:
This module provides a way to serve configurable plain text files.
The main idea is to provide a way to configure static files in the backend,
like facebook domain ownership, google site verification or ads.txt, which may
be added or changed regularly by SEOs.
It can be either used as a normal configuration which will be imported/exported or
in conjunction with config_ignore to make it manageable in the production environment
without being overwritten by config import.
Usage:
- Install module & configure permission
Administer served files - Goto /admin/config/system/served_files
- Add a file with path, max-age & content
- The file is now available under the provided path
If you have external caching providers, e.g. Varnish, CDNs you should monitor
file changes via entity type hooks and purge caches there.
e.g:
use Drupal\serve_plain_file\Entity\ServedFile;
/**
* Implements hook_ENTITY_TYPE_update().
*/
function my_module_served_file_update(ServedFile $entity) {
$urls = $entity->getUrlsForCachePurging();
my_module_purge_external_caches($urls);
}
/**
* Implements hook_ENTITY_TYPE_delete().
*/
function my_module_served_file_delete(ServedFile $entity) {
$urls = $entity->getUrlsForCachePurging();
my_module_purge_external_caches($urls);
}
Contribute
- Reach out at #drunomics-contribute at the Drupal Slack!
Supporting organizations:
Initial development of 8.x-1.x version
Project information
Maintenance fixes only
Considered feature-complete by its maintainers.- Project categories: Media, Search engine optimization (SEO)
254 sites report using this module
- Created by mbm80 on , updated
Stable releases for this project are covered by the security advisory policy.
Look for the shield icon below.
Releases
8.x-1.11
released 2 October 2024
Works with Drupal: ^8 || ^9 || ^10 || ^11
Install:
Development version: 8.x-1.x-dev updated 2 Oct 2024 at 12:41 UTC


