This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/posts/2017/clearing-mod-pagespeed-cache.md

12 lines
475 B
Markdown

---
date: '2017-02-20'
draft: false
title: Clearing mod_pagespeed cache
tags: ['Apache', 'development']
---
I use [mod_pagespeed](https://github.com/pagespeed/mod_pagespeed) on this server to help speed up asset delivery and force optimization best practices across all the sites I host.<!-- excerpt --> Occasionally, during deployments, it's helpful to clear the module cache. Doing so is as simple as the following:
```bash
touch /var/cache/mod_pagespeed/cache.flush
```