I am configuring VsFTPd 2.2.2 server on Debian 5.0. I want user after login can see and edit just two dirs:
/home/user/
/var/www/project1/
/var/www/project2/
Possible solutions
I can Chroot user just in one of this directories. But I dont want to use symlinks or "mount --bind" because I have a lot of users and I dont want to have very big fstab file. Also the user should see exactly "/var/www/project1/" but not /home/user/var-www-project1/.
I can set local_root=/. In this case user will see all dirs(bin dev etc lib lost+found mnt proc sbin sent sys usr boot emul home lib64 media opt root selinux srv tmp var). It also does not satisfy me :(