Viewing 1 replies (of 1 total)
  • holstebm

    (@holstebm)

    Hello,

    I think this should do it, assuming you are just caching GET requests:

    add_filter('nginxchampuru_get_reverse_proxy_key', function($url){
        $url_key = preg_replace('/(https?):\/\//u', '$1GET', $url);
        return md5($url_key);
    });

    Add that to your themes functions.php…

    Let me know if that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Change fastcgi_cache_key’ is closed to new replies.