From 8c7012b06c9f7eb22cdf2004619db47b20c5dae0 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Thu, 2 Feb 2023 21:03:14 +0000 Subject: [PATCH] Frontend: Fix mixxong nginx.conf ; Signed-off-by: Fred Boniface --- static/conf/nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/conf/nginx.conf b/static/conf/nginx.conf index 2589b38..f5eafbe 100644 --- a/static/conf/nginx.conf +++ b/static/conf/nginx.conf @@ -34,7 +34,7 @@ http { brotli_static on; error_page 404 /404.html; expires 7d; - add_header Cache-Control "public, no-transform" + add_header Cache-Control "public, no-transform"; } location /api/ { @@ -45,7 +45,7 @@ http { gzip on; brotli on; expires 2m; - add_header Cache-Control "private, no-transform" + add_header Cache-Control "private, no-transform"; } location /api/v1/list/ { @@ -54,7 +54,7 @@ http { proxy_ignore_headers Cache-Control; proxy_cache_valid 200 10080m; expires 10080m; - add_header Cache-Control "public, no-transform" + add_header Cache-Control "public, no-transform"; } } }