...
Following along the lines of allow a specific user, in this case serveradmin, to manage their only serveradmin with help from a root enabled user can manage WordPress.
Code Block | ||
---|---|---|
| ||
cd /home/www.krypton.com/www/ sudo chown -R serveradmin:www-data ./blogcms/ sudo# chmodOnly -R o-rwx ./blog/ # No users except nobody and those belong to the group wgkrypton will be granted access. svradm can manage this site and we ensure the Apache www-data user can access the site sudo chmod -R uo-wrwx ./blogcms/ sudo# chmodNo -R g+w ./blog/ # Any user belonging users except nobody and those belong to the group wgkrypton groupwill canbe managegranted theaccess. site |
...I may need to setup masking to maintain these permissions...
...