Hi,

I have a case with a CMS (pimcore) and setting the expires directive.

    location / {
# First attempt to serve request as file, then as directory, then fall back to index.php
        try_files $uri $uri/ /website/var/assets/$uri /index.php?$args;
        index index.php;
    }

So, there are "assets" (pdfs, mostly but also some images) in a subdirectory.

This works, but this directive:

location ~* \.(jpe?g|gif|png|bmp|ico|css|js|pdf|zip|htm|html|docx?|xlsx?|pptx?|txt|wav|swf|avi|mp\d)$ {
        access_log off;
        log_not_found off;

        expires 1w;
    }

breaks the first directive.

Is there a way to have both?



Rainer

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to