Skip to content

Instantly share code, notes, and snippets.

@cuongpjh
cuongpjh / analytics.txt
Last active March 27, 2018 18:06
Tối ưu Analytics cho Google Page Speed
<script src="https://toidungchan.com/wp-content/uploads/ga-lite.min.js" async></script> <script> var galite = galite || {}; galite.UA = 'XXX'; // Đoạn code cho Google Analytics </script>
@cuongpjh
cuongpjh / nginx.conf
Created March 27, 2018 18:10
Config Nginx cho WebP
map $http_accept $webp_suffix {
default "";
"~*webp" ".webp";
}
@cuongpjh
cuongpjh / domain.conf
Created March 27, 2018 18:19
domain.conf
location ~* ^/wp-content/.+\.(png|jpg)$ {
add_header Vary Accept;
try_files $uri$webp_suffix $uri =404;
}