Advertisement
Guest User

nginx_webp

a guest
Jul 18th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.29 KB | None | 0 0
  1. location ~* ^(/.+)\.(jpg|jpeg|jpe|png|gif)$ {
  2.     add_header Vary Accept;
  3.  
  4.     if ($http_accept ~* "webp"){
  5.         set $imwebp A;
  6.     }
  7.     if (-f $request_filename.webp) {
  8.         set $imwebp  "${imwebp}B";
  9.     }
  10.     if ($imwebp = AB) {
  11.         rewrite ^(.*) $1.webp final;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement