From c0b57078a52291ed2fde3b4ec001f728352e7c92 Mon Sep 17 00:00:00 2001 From: Costin Date: Sat, 23 Sep 2017 19:24:16 +0200 Subject: [PATCH] Update nginx_vhost.conf.master: leverage browser caching for /favicon.ico --- server/conf/nginx_vhost.conf.master | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/conf/nginx_vhost.conf.master b/server/conf/nginx_vhost.conf.master index 0399cf9f1..8cfdbcf8f 100644 --- a/server/conf/nginx_vhost.conf.master +++ b/server/conf/nginx_vhost.conf.master @@ -131,6 +131,8 @@ server { location = /favicon.ico { log_not_found off; access_log off; + expires max; + add_header Cache-Control "public, must-revalidate, proxy-revalidate"; } location = /robots.txt { -- GitLab