Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created December 16, 2016 02:32
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 Kaiderella/d138d899ce57cacd751621bd7d06b2c9 to your computer and use it in GitHub Desktop.
Save Kaiderella/d138d899ce57cacd751621bd7d06b2c9 to your computer and use it in GitHub Desktop.
Kích hoạt WebP cho NginX
# 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 $uri$webp_ext $uri =404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment