I'm using Rails 3.1 asset pipeline which is served using a custom origin Cloudfront CDN.

This is what I have written in my nginx.conf to serve the assets in gzip and for caching:

                location ^~ /assets/ {
                    allow all;
                    gzip_http_version 1.0;
                    gzip_static on;
                    expires 365d;
                    add_header Last-Modified "";
                    add_header ETAg "";
                    add_header Cache-Control public;
            }

The problem is that subdirectories e.g. /background/ in my images asset folder have their items missing with 404s.

When I disable the nginx location config above the problem goes away. How do I configure nginx properly to serve the assets in the subdirectories?

Thanks

link|improve this question

75% accept rate
Did you ever figure this out? – NudeCanalTroll Apr 19 at 3:08
Sorry for taking awhile to get back. But yeah I tried it today and it works fine! Thanks man. – davicta Apr 25 at 6:58
feedback

1 Answer

up vote 1 down vote accepted

This worked for me:

location ~ ^/(assets)/  {
    root /opt/appname/public; # or whatever the path is to your app's public folder
    gzip_http_version 1.0;
    gzip_static on;
    access_log off;
    expires 1y;
    add_header Cache-Control public;
    add_header Last-Modified "";
    add_header ETag "";
    break;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.