From e1f02ede359e468df3e5981f914aa1c1298a6765 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Thu, 20 Dec 2018 15:59:55 +0100
Subject: [PATCH] Added caching headers on front urls

---
 deploy/docker.nginx.template | 3 +++
 deploy/nginx.template        | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/deploy/docker.nginx.template b/deploy/docker.nginx.template
index 273084de9..fd99c0705 100644
--- a/deploy/docker.nginx.template
+++ b/deploy/docker.nginx.template
@@ -32,6 +32,9 @@ server {
 
     location /front/ {
         alias /frontend/;
+        expires 30d;
+        add_header Pragma public;
+        add_header Cache-Control "public, must-revalidate, proxy-revalidate";
     }
 
     location /federation/ {
diff --git a/deploy/nginx.template b/deploy/nginx.template
index 702dc05ee..8f5f674b8 100644
--- a/deploy/nginx.template
+++ b/deploy/nginx.template
@@ -87,6 +87,9 @@ server {
 
     location /front/ {
         alias ${FUNKWHALE_FRONTEND_PATH}/;
+        expires 30d;
+        add_header Pragma public;
+        add_header Cache-Control "public, must-revalidate, proxy-revalidate";
     }
 
     location /federation/ {
-- 
GitLab