Hi John, We have Nginx as reverse proxy and we have configured a cache for static files, where it is supposed to be cached by the browser for a long period:
location /i/ {
expires 300d;
rewrite ^/i(/.*)$ $1 break;
root /u01/software/apex/images;
}
The users of the Apex apps are located in several countries in different continents.
Do you think if we activate CDN, we should remove this? Or it will be complementary?
Thanks for your great posts! Jose.