Това разширение не е обновявано повече от 2 години. Може вече да не се поддържа и да има проблеми със съвместимостта при използването му на по-нови версии на WordPress.

Full Site Cache for CloudFront

Описание

If you blog are using CloudFront on the main WordPress domain (e.g. www.example.com), and you want to cache HTML page for not logged in user. You could set a long „Default TTL“ for these HTML pages if the cache could invalidate automatically.

Invalidation behaviors

  • Invalidate the whole cache when a new post published
  • Invalidate a post page when a post updated
  • Invalidate a post page if have any comment has changed on that page
  • Each invalidation has a minimum interval of 10 minutes

Requirements

  • PHP 5.4+
  • WordPress 4.4+
  • A CloudFront account and AWS Access Key and Secret Key to access CloudFront distribution.

Recommendations

  • Offload CSS, JS and medias file to another domain with a different distribution, because this plugin will invalidate the whole cache when updating the post.

Инсталиране

First, you need to use CloudFront on your WordPress site.

Add the configuration code to your wp-config.php file above the line reading /* That’s all, stop editing! Happy blogging. */.

Example configuration:

$tlo_cf_id[1] = 'DISTRIBUTION_ID';
define( 'AWS_ACCESS_KEY_ID', '********************' );
define( 'AWS_SECRET_ACCESS_KEY', '****************************************' );
$wp_rich_edit = true; // CloudFront will remove user-agent header, so if you want to have Visual Editor, keep this line.

This plugin supports multisite, just replace 1 in the $tlo_cf_id[] to the blog id.

Отзиви

There are no reviews for this plugin.

Сътрудници и разработчици

“Full Site Cache for CloudFront” е софтуер с отворен код. Към разширението са допринесли следните хора:

Сътрудници

Превеждане на “Full Site Cache for CloudFront” на вашия език.

Имате интерес към разработване?

Преглеждане на кода, разглеждане на SVN хранилище, или абонамент към програмната история (log) чрез RSS.

Списък с промени

0.0.2

  • Fixed for comment approval.
  • Changed the invalidate behavior.

0.0.1

Published the first version