• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Hiding Directories

D

DARF@

Guest
Is there a way in Plesk to hide all the directories with the exception of httpdocs from users logging in via ftp?

or set it up that when they login via ftp they go straight into the httpdocs and cant go up a level.

Thanks
 
Around line 50 in /etc/proftpd.conf change:

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

To:

<Directory /var/www/vhosts>
GroupOwner psacln
HideNoAccess On
HideUser root
</Directory>

This will hide the directories such as /etc, /var, etc.
 
Back
Top