• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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