From 23650eeab884cf438b47640206975bb0ee5ff3dd Mon Sep 17 00:00:00 2001 From: plabuse Date: Tue, 10 Jan 2023 06:06:07 +0100 Subject: [PATCH] Modification de nginx.conf deny trop restrictif sur un repertoire --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index ab7db0b..51d8f76 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -23,7 +23,7 @@ location __PATH__/ { } # Protection de certains repertoires - location ~ /(db|logs|tmp|image)/ { + location ~ /(db|logs|tmp)/ { deny all; } ### End of PHP configuration part