Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
location ~* \.r\.(jpe?g|png|gif) {
if ( $http_cookie ~* "rwdimgsize=large" ) {
rewrite ^/(.*)/mobile/(.*)\.r(\.(?:jpe?g|png|gif))$ /$1/desktop/$2$3 last;
}
rewrite ^/(.*)\.r(\.(?:jpe?g|png|gif))$ /$1$2 last;
access_log off;
try_files $uri @cache;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment