I wanna give read access to my developers on the webapps folder, so that don't have to ssh only in their application folder. But I can't do it. Is there a way? asked 09 Apr '17, 13:58 avalsorya |
You can grant access to applications to specific users following the instructions here. You could modify step 3 in that documentation to grant read access to the directories within webapps like this:
You can't make any changes to $HOME/webapps itself. When connecting via SSH, your users will start in their home directories. Your users can make navigating to specific areas easier by creating symbolic links in their home directories. For example, if user2 uses /home/user1/webapps/name_of_app frequently, he could run this command in his own home directory:
Then, instead of using:
to change to the application's directory, the user could enter:
I hope this helps! answered 09 Apr '17, 15:39 maryh |