From 2b5e3b1b80d4e33161fe77c5deb684a7f6b6c010 Mon Sep 17 00:00:00 2001 From: Fomafix Date: Sun, 17 Nov 2024 21:53:55 +0000 Subject: [PATCH] Update Apache config syntax in .htaccess files "Deny from all" is deprecated; the replacement syntax has been available since Apache 2.4 (originally released in 2012). See . Bug: T360850 Change-Id: I6b641c76f3229b70b07422295623deb5612b8030 --- dev-scripts/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-scripts/.htaccess b/dev-scripts/.htaccess index 3a4288278..b66e80882 100644 --- a/dev-scripts/.htaccess +++ b/dev-scripts/.htaccess @@ -1 +1 @@ -Deny from all +Require all denied