• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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