From: Matthijs Kooijman Date: Wed, 17 Dec 2008 19:10:56 +0000 (+0100) Subject: system: Improve the permissions addsite sets. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;ds=sidebyside;h=ba17a2a9cea308a8f37fa291d1cd84c2cb7a56be;p=matthijs%2Fservers%2Fdrsnuggles.git system: Improve the permissions addsite sets. --- diff --git a/usr/local/bin/addsite b/usr/local/bin/addsite index c7212ab..93113de 100755 --- a/usr/local/bin/addsite +++ b/usr/local/bin/addsite @@ -92,14 +92,14 @@ sudo chown -R 0:$GROUP "$DIR" # By default, let the owner have write access, the group have read access sudo setfacl -R --set d:u::rwX,d:g::rX,d:o::-,u::rwX,g::rX,o::- "$DIR" -# Give the group write access to htdocs and conf -sudo setfacl -R -m g::rwX "$DIR/htdocs" "$DIR/conf" +# Give the group write access to htdocs, applications and conf +sudo setfacl -R -m g::rwX "$DIR/htdocs" "$DIR/applications" "$DIR/conf" # Give lighttpd read access to the dir itself sudo setfacl -m u:$HTTPD_USER:rx "$DIR" -# Allow lighttpd to read anything in htdocs and conf -sudo setfacl -R -m d:u:$HTTPD_USER:rX,u:$HTTPD_USER:rX "$DIR/htdocs" "$DIR/conf" +# Allow lighttpd to read anything in htdocs, applications and conf +sudo setfacl -R -m d:u:$HTTPD_USER:rX,u:$HTTPD_USER:rX "$DIR/htdocs" "$DIR/applications" "$DIR/conf" # Allow lighttpd to write new files in logs (but not touch existing or those created by lighttpd) sudo setfacl -m u:$HTTPD_USER:rwX "$DIR/logs"