From 879278e19724c805328154dd08c2ffc223e39de3 Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Sun, 27 Jun 2021 20:12:07 +0100 Subject: [PATCH] update --- site/content/services/shell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/services/shell.md b/site/content/services/shell.md index 006d49b..afdf25d 100644 --- a/site/content/services/shell.md +++ b/site/content/services/shell.md @@ -65,7 +65,7 @@ A simplistic approach would be to make your home directory, and public_html directory world readable: ```shell -chmod a+rX ~ +chmod a+x ~ chmod -R a+rX ~/public_html chmod -R a+rx ~/public_html/cgi-bin ``` @@ -73,7 +73,7 @@ chmod -R a+rx ~/public_html/cgi-bin A more secure way of allowing access would be to use posix ACLs: ```shell -setfacl -m "u:www-data:rX" ~ +setfacl -m "u:www-data:x" ~ setfacl -Rdm "u:www-data:rX" ~/public_html setfacl -Rdm "u:www-data:rx" ~/public_html/cgi-bin ```