Forum Moderators: phranque
# Old VPS
First Byte: 0.470s
Start Render: 1.100s
First Contentful Paint: 1.043s
Speed Index: 1.912s
Document Complete Time: 2.384s
Fully Loaded Time: 6.207s
# New VPS without mod_pagespeed
First Byte: 0.478s
Start Render: 1.000s
First Contentful Paint: 0.964s
Speed Index: 1.611s
Document Complete Time: 1.986s
Fully Loaded Time: 4.006s
# New VPS with mod_pagespeed
First Byte: 0.516s
Start Render: 0.900s
First Contentful Paint: 0.914s
Speed Index: 1.524s
Document Complete Time: 1.584s
Fully Loaded Time: 6.370s So you can see that there are a few variables at play here: operating system, CPU, handler, HTTP/2, mod_pagespeed, and latency for the remote MySQL.
mod_pagespeed is doing what, some of us, are doing ourselves.
You might also look into Brotli support for your web server, if it isn't already included.
<link rel="stylesheet" type="text/css" href="https://www.parked_domain.com/includes/styles_uni.css"> <link rel="stylesheet" type="text/css" href="https://www.parked_domain.com/includes/A.styles_uni.css,qh=1604823036.pagespeed.cf.LpeAzd2rBd.css"> # sites are loading CSS out of order, causing awkward page loads. Move CSS to the header, but
# if this doesn't work then you can disallow */styles*.css
# https://www.modpagespeed.com/doc/filter-css-to-head
ModPagespeedEnableFilters move_css_to_head
# thumbnails aren't loading properly, exclude the directory until there's a solution
# https://www.modpagespeed.com/doc/restricting_urls
ModPagespeedDisallow "*thumbs/*" I had a user comment that many pictures on the site weren't loading properly. Specifically, I have a list on one page that shows anywhere from 25 to 1,000 thumbnails, then when you click on the intro there's a second page with larger photos. It looks like the thumbnails after the first 10 or so weren't loading, but everything loaded fine on the details page.
# sites are loading CSS out of order, causing awkward page loads. This didn't work:
# ModPagespeedEnableFilters move_css_to_head
# so disallow entirely on CSS
ModPagespeedDisallow "*.css"
# thumbnails aren't loading properly, exclude the directory until there's a solution
# https://www.modpagespeed.com/doc/restricting_urls
ModPagespeedDisallow "*thumbs/*"