Posted by tbenice on March 5, 2013 at 8:52pm
For those who use the private file system for images (or amazons3 which uses private file system), the following needs to be in your .conf for nginx:
# Catch image styles for private files.
location ~ ^/system/files/styles/ {
try_files $uri @rewrite;
}The stated config:
# Catch image styles for private files.
location ~ ^/sites/.*/private/styles/ {
try_files $uri @rewrite;
}does not work.
Comments
You Rockstar!
Thank you so much!