suEXEC / suPHP
Here's what I did:
group add developers
usermod -a -G developers my_account
chown -R root:developers /var/www
find /var/www/ -type d -exec chmod 2775 {} \;
find /var/www/ -type f -exec chmod 664 {} \;
Also, edit /etc/apache2/envvars and add:
umask 002
Given the above, (a) am I reasonably secure and (b) how do I install/properly configure suEXEC to allow the sites to write (e.g. Wordpress)? Or, is there something else I should consider?