Mobile app version of vmapp.org
Login or Join
Chiappetta492

: Is it possible to setup an ftp server that only allows file uploads? Is it possible to setup an ftp server in such a way that only allows users (either registered accounts or anonymous accounts)

@Chiappetta492

Posted in: #Ftp #Uploading

Is it possible to setup an ftp server in such a way that only allows users (either registered accounts or anonymous accounts) to upload files and do nothing else (such as delete files, view other folders, chmod, etc.)?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Chiappetta492

1 Comments

Sorted by latest first Latest Oldest Best

 

@Si4351233

I use VSFTPD on my servers which is easy to configure for real and virtual users, plus its very secure.

Open vsftpd.conf file:
# vi /etc/vsftpd.conf

Set download_enable to NO:
download_enable=NO

Save and close the file. Restart vsftpd ftp server:
# /etc/init.d/vsftpd restart

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme