diff --git a/docker/nginx.conf b/docker/nginx.conf index ace56165aa..7f275b4fa8 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -27,6 +27,11 @@ server { location /static/ { alias /var/www/static/; autoindex on; + + # Caching settings + expires 30d; + add_header Pragma public; + add_header Cache-Control "public"; } } \ No newline at end of file