From c7762f4f5a7ed074e60c654d4ce2429a24c85b9f Mon Sep 17 00:00:00 2001 From: Sheppy Date: Mon, 16 Jan 2023 23:51:53 +0100 Subject: [PATCH] feat: add header on backend to identify request --- roles/typo3-cms/templates/default-nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/typo3-cms/templates/default-nginx.conf b/roles/typo3-cms/templates/default-nginx.conf index 6359f1b..c1a482e 100644 --- a/roles/typo3-cms/templates/default-nginx.conf +++ b/roles/typo3-cms/templates/default-nginx.conf @@ -11,5 +11,6 @@ server { include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; + add_header X-ATHQ-HANDLER cms; } }