From 9e41612fe58ac1e50d57869f68fe2d87c371f805 Mon Sep 17 00:00:00 2001 From: ma-04 <120931948+ma-04@users.noreply.github.com> Date: Fri, 31 Oct 2025 16:14:29 +0600 Subject: [PATCH] fix(cache control): remove unnecessary cache control header from php.conf file --- nginx/common/php.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/nginx/common/php.conf b/nginx/common/php.conf index 379ad17..4f70350 100644 --- a/nginx/common/php.conf +++ b/nginx/common/php.conf @@ -10,5 +10,4 @@ location ~ \.php$ { include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; - add_header Cache-Control "public, max-age=3600"; }