Nginx Cache Controller Plugin WordPress, Download, Install

Nginx Cache Controller Plugin WordPress

Provides some functions of controlling Nginx proxy server cache.

Nginx Cache Controller Download Now

Download Now

(If the link does not work)↓

Originals Link WordPress.org

https://wordpress.org/plugins/nginx-champuru/

How to Install Nginx Cache Controller Plugin, Manually

  • A plug-in installation screen is displayed on the WordPress admin panel.
  • It installs it in wp-content/plugins.
  • The plug-in is made effective.

Example of Nginx settings:

Allow X-ACCEL-EXPIRES for fastcgi.

location ~ .php$ {
        include        /etc/nginx/fastcgi_params;
        fastcgi_pass   unix:/tmp/php-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $vhost_root/$fastcgi_script_name;
        fastcgi_pass_header "X-Accel-Redirect";
        fastcgi_pass_header "X-Accel-Expires";
    }

Setting cache directory for reverse proxy.

proxy_cache_path  /var/cache/nginx levels=1:2 keys_zone=czone:4m max_size=50m inactive=120m;
  • The default path is /var/cache/nginx.
  • The default value of levels is 1:2.
  • You can change the cache path at the admin panel.

Setting the key for the reverse cache proxy.

proxy_cache_key "$scheme://$host$request_uri"
  • You can customize proxy_cache_key with nginxchampuru_get_reverse_proxy_key hook.

Video

Screenshots

Nginx Cache Controller Plugin WordPress

Nginx Cache Controller Plugin WordPress

Plugin Not Working?

If any errors or problems with the plug-in then write comments.

Add a Comment

Your email address will not be published. Required fields are marked *