Skip to content

Instantly share code, notes, and snippets.

@alenabdula
Created October 29, 2015 16:58
Show Gist options
  • Save alenabdula/7001fa6e8f4ee3b7dbe2 to your computer and use it in GitHub Desktop.
Save alenabdula/7001fa6e8f4ee3b7dbe2 to your computer and use it in GitHub Desktop.
Nginx: Serve WebP image instead of JPEG or PNG files, if browser supports it.
# Check to see if .webp image is supported in the browser
# Serve .webp image, if avaiable, instead of .jpeg / .png
location / {
if ( $http_accept ~ "image/webp" ) {
rewrite (.+)\.(jpe?g|png)$ /$1.webp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment