I am setting up a chrooted environment for users who request SFTP access, essentially their login directory must be /home/xxxx which is not accessible by public FTP,
Would mounting each /home/xxx directory to /srv/ftp/~xxx, possible for a hundred users in the near future be a bad idea for a server environment? Could it slow anything down?
An example:
mount --bind /srv/ftp/john /home/john/
If you could provide any experience or insight on if I am doing this wrong, feel free to lecture me - I would be very greatful.