Skip to content

Instantly share code, notes, and snippets.

@markonikolic985
Created July 16, 2019 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markonikolic985/760cecdaa51c6143c11dd7452236132f to your computer and use it in GitHub Desktop.
Save markonikolic985/760cecdaa51c6143c11dd7452236132f to your computer and use it in GitHub Desktop.
# http config block
map $http_accept $webp_ext {
default "";
"~*webp" ".webp";
}
# server config block
location ~* ^(/wp-content/.+)\.(png|jpg)$ {
add_header Vary Accept;
try_files $1$webp_ext $uri =404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment