From b28767d8f05977e84e3e00c7d1adc2525bc6748e Mon Sep 17 00:00:00 2001 From: lolcat Date: Mon, 8 Jun 2026 01:06:51 -0400 Subject: [PATCH] fix ACL rules for apache2 --- docs/apache2-example.md | 10 +++++++--- docs/apache2.md | 10 +++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/docs/apache2-example.md b/docs/apache2-example.md index 09f5c1d..a6115b1 100644 --- a/docs/apache2-example.md +++ b/docs/apache2-example.md @@ -49,9 +49,13 @@ Looking for the apache2 guide? + Require all denied + + + # remove directory listing from /icons + + Options -Indexes diff --git a/docs/apache2.md b/docs/apache2.md index ea337d6..7e545b3 100644 --- a/docs/apache2.md +++ b/docs/apache2.md @@ -104,9 +104,13 @@ Now, edit the following file: `/etc/apache2/sites-available/000-default.conf`, r # deny access to private resources - - Order Deny,allow - Deny from all + + Require all denied + + + # remove directory listing from /icons + + Options -Indexes ```