Report this

What is the reason for this report?

disable FastCGI cache for mobile

Posted on March 27, 2020

I’m using WordPress and different theme for mobile & desktop. FastCGI cache storing only one version. Sometimes it showing desktop version on mobile and sometimes mobile version on desktop.

My question

  1. Is it possible to cache different versions for different user agent? if yes then how (Using the same URL for mobile and desktop)
  2. If not then how to disable FastCGI cache for mobile?


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
0

Accepted Answer

if ( $http_user_agent ~* '([^-]+)Android' ) {
             #yourcode here
}
if ( $http_user_agent ~* '([^-]+)iPhone' ) {
	#yourcode here
}

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.