• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

ProFTPD - hide hidden files

KamilL

New Pleskian
Hello,
I created a user on my machine which has a home directory in /home/.... In order to be able to connect over ftp I simply added the user to the psacln group. Connecting over FTP I don't want the user to see hidden files and folders.

After:
<Directory /var/www/vhosts>
GroupOwner psacln
</Directory>

I added:
<Directory /home/*>
GroupOwner psacln
ListOptions "-A" strict
</Directory>

But it just doesn't work. I still see the hidden files. I also tried adding (into the directory block)

<Limit ALL>
IgnoreHidden on
</Limit>

and it didn't help. Can anyone help me on this?
 
Googled & tried

Edit: HideFiles ^\..* worked. I got no idea why it didn't work before.
 
Last edited:
Back
Top