Hello,
which would be the best way to handle this multiple location blocks or a single location block with a regular exp.
location /css/ { root /var/www/static_includes/; expires 97d; }
location /images/ { root /var/www/static_includes/; expires 97d; }
location /js/ { root /var/www/static_includes/; expires 97d;}
----------------
location ~ /(css|images|js)/ {
root /var/www/static_includes/;
expires 97d;
}
Thanks.