This commit is contained in:
parent
a571829e6f
commit
879278e197
@ -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
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user