Comments on How to speed up apache with mod_pagespeed and Memcached on Ubuntu 16.04

This tutorial shows how to improve the page load times of your website by using the Google mod_pagespeed module for Apache in conjunction with the fast in-memory cache Memcached. Pagespeed is an Apache 2 module that optimizes and caches the content of a website before it gets delivered to the browser, the result is that the page loads faster, the system load on your server gets lower and the server will be able to deliver more pages per second.

2 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Luis Vivas

How I can disable mod_pagespeed to one domain?I tried:ModPagespeed = off mod_pagespeed = off modpagespeed = off But nothing happend.

By: Luis Vivas

To turn off mod_pagespeed, add this on "Options" -> "Apache directives":

<IfModule pagespeed_module>    ModPagespeed off</IfModule>