From 1619c192559d680c4f1bd838fce0ec267aa3f601 Mon Sep 17 00:00:00 2001 From: Uladzimir Tsykun Date: Sat, 14 Sep 2024 15:09:50 +0200 Subject: [PATCH] [docker] Fix support packages that ends on .php --- docker/nginx/nginx-tpl.conf | 4 ---- docker/nginx/nginx.conf | 4 ---- 2 files changed, 8 deletions(-) diff --git a/docker/nginx/nginx-tpl.conf b/docker/nginx/nginx-tpl.conf index 48ba7638..74f04c70 100644 --- a/docker/nginx/nginx-tpl.conf +++ b/docker/nginx/nginx-tpl.conf @@ -48,10 +48,6 @@ http { fastcgi_read_timeout 600; fastcgi_pass _PHP_FPM_HOST_; } - - location ~ \.php$ { - return 404; - } access_log off; } } diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf index f1405b90..2ff9868f 100644 --- a/docker/nginx/nginx.conf +++ b/docker/nginx/nginx.conf @@ -48,10 +48,6 @@ http { fastcgi_read_timeout 600; fastcgi_pass 127.0.0.1:9000; } - - location ~ \.php$ { - return 404; - } access_log off; } }