posts directory

This commit is contained in:
Cory Dransfeldt 2023-03-11 20:22:08 -08:00
parent 9e00d9c09e
commit 5c6deac7a2
No known key found for this signature in database
24 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,13 @@
---
title: Clearing mod_pagespeed cache
date: '2017-02-20'
draft: false
tags: ['apache', 'development']
summary: I use mod_pagespeed on this server to help speed up asset delivery and force optimization best practices across all of the sites I host.
---
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 of 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
```