update
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2021-06-27 20:12:07 +01:00
parent a571829e6f
commit 879278e197
Signed by: burble
GPG Key ID: 0FCCD13AE1CF7ED8

View File

@ -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
```