From 46ef941251f8bbba12719645db56a000c69de68f Mon Sep 17 00:00:00 2001 From: Sheppy Date: Wed, 18 Jan 2023 18:48:38 +0100 Subject: [PATCH] fix: remove hardcoded url --- roles/typo3-cms/templates/default-nginx.conf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/typo3-cms/templates/default-nginx.conf b/roles/typo3-cms/templates/default-nginx.conf index e053d75..9a0c161 100644 --- a/roles/typo3-cms/templates/default-nginx.conf +++ b/roles/typo3-cms/templates/default-nginx.conf @@ -15,8 +15,7 @@ server { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; - #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_param SCRIPT_FILENAME /var/www/atlantishq-cms/public/index.php; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; #fastcgi_param PATH_INFO $fastcgi_path_info; add_header X-ATHQ-HANDLER cms always; }