Any idea what would be the the best way to exclude Kirby users from fastcgi cache. We cache all pages all the times, the idea is to exclude logged in users. I could try the below in nginx conf, but i think Kirby session cookie also exists for guests? if ($http_cookie ~* "kirby_session") { set $skip_cache 1; }
Anything i could do from Kirby to let the sever know if user is logged in or not?