소스 검색

Add webp to expires rules for Nginx

Emmanuel Bouthenot 5 년 전
부모
커밋
4e2954ff4c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      roles/webserver/templates/nginx/vhost_expires.j2

+ 1 - 1
roles/webserver/templates/nginx/vhost_expires.j2

@@ -19,7 +19,7 @@ location ~* \.(?:rss|atom)$ {
 }
 
 # Media: images, icons, video, audio, HTC
-location ~* \.(?:jpg|jpeg|gif|png|ico|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ {
+location ~* \.(?:jpg|jpeg|webp|gif|png|ico|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ {
     expires 1M;
     access_log off;
     add_header Cache-Control "public";