Report this

What is the reason for this report?

FTP user limitation to a specific folder

Posted on February 24, 2016

Hello, I need to lock/chroot/limit a FTP user to a specific folder My droplet is Ubuntu I installed vsftpd

I’ve created a new user using: sudo usermod -d /home/USERNAME USERNAME

I’ve binded the html folder to the new user folder mount --bind /var/www/html /home/USERNAME/www/html

I’ve edited the vsftpd.conf file and modified the following: chroot_local_user=YES allow_writeable_chroot=YES write_enable=YES

I saved the file restarted the vsftpd using: service vsftpd restart

when I connect from my pc using filezilla I’m still able to navigate through all the servers folder any help?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

The first thing that jumps out to me is that the parameter in vsftpd.conf should be

chroot_local_user=YES

instead of

chrootlocaluser=YES

This is an older tutorial (targeting Ubuntu 12.04) but the vsftpd configuration section should still cover what you’re looking to do. The configuration in that tutorial includes chrooted user accounts.

I should also point out that unless it’s absolutely necessary it’s not generally recommended to run an FTP service as it’s an insecure protocol. SFTP provides a much better, encrypted option for file transfers.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.