Permissions on www-pub

Grant permissions on the Apache2 folder (/var/www) for synchronizing via SSHFS

Create a new group (www-pub) and add the users to that group

groupadd www-pub

usermod -a -G www-pub usera ## must use -a to append to existing groups

usermod -a -G www-pub userb

groups usera ## display groups for user ...
more ...