Comment on Looking for guidance on modernizing a high-traffic WordPress news site

dan@upvote.au ⁨3⁩ ⁨days⁩ ago

Use a page caching plugin that writes HTML files to disk. I don’t do a lot with WordPress any more, but my preferred one was WP Super Cache. Then, you need to configure Nginx to serve pages directly from disk if they exist. By doing this, page loads don’t need to hit PHP and you effectively get the same performance as if it were a static site.

See how you go with just that, with no other changes. You shouldn’t need FastCGI caching. If you can get most page loads hitting static HTML files, you likely won’t need any other optimizations.

One issue you’ll hit is if there’s any highly dynamic content on the page. You’ll need to use JavaScript to load any dynamic bits.

source
Sort:hotnewtop