# Impedisce a NGINX di cacheare le risposte PHP
<FilesMatch "\.php$">
    Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0"
    Header set Pragma "no-cache"
    Header set Expires "Thu, 01 Jan 1970 00:00:00 GMT"
</FilesMatch>

# I file statici possono essere cacheati normalmente
<FilesMatch "\.(css|js|png|jpg|jpeg|gif|ico|svg|woff2)$">
    Header set Cache-Control "public, max-age=86400"
</FilesMatch>