• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

How 2 make these root ftp directories invidible for ftp user?

B

belyakov

Guest
How 2 make these root ftp directories invisible for ftp user?

When user loggs in via ftp there are a lot of directories that he can not modify or read... is there any way to hide them from user? Just to make all those root-owned directorie invisible?
 
I think, its ok, when he can see what he "owns" ....

I give my users the info, that they should use "httpdocs" as their standard folder in their ftp clients and then tey see first the html main directory.
 
Originally posted by Outlaw
I think, its ok, when he can see what he "owns" ....

I give my users the info, that they should use "httpdocs" as their standard folder in their ftp clients and then tey see first the html main directory.


But still is there any way to do it. Maybe i should ajust the settings of FTP server?
 
Hiding FTP root directories

Hi there,

I'm also interested in being able to hide the directories not owned by the ftp user. If anyone has any ideas how to do this, please let us know!

Kind regards


Jim
 
Hit the search button, it has been explained more than once here how to hide root owned directories in each user account.

Search for proftpd.conf and GroupOwner ...

Hint (as I did the search anyways):

As jshanley (among others) wrote:

Find your proftpd.conf file, and scroll down to the section that says:
Code:
<Directory /usr/local/psa/home/vhosts>
GroupOwner psacln
</Directory>
Change it to look like this instead:
Code:
<Directory /usr/local/psa/home/vhosts>
GroupOwner psacln
HideNoAccess On
HideUser root
</Directory>
 
Back
Top