Created
June 6, 2012 10:22
-
-
Save amitsaha/2881170 to your computer and use it in GitHub Desktop.
Simple configuration file for Anonymous only access to VSFTPD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Sample anonymous FTP server configuration | |
| # | |
| # Mandatory directives | |
| # | |
| listen=YES | |
| local_enable=NO | |
| anonymous_enable=YES | |
| anon_mkdir_write_enable=YES | |
| anon_upload_enable=YES | |
| write_enable=YES | |
| anon_root=/var/ftp/ | |
| no_anon_password=YES | |
| # Security | |
| anon_world_readable_only=NO | |
| # | |
| # Optional directives | |
| # | |
| anon_max_rate=2048000 | |
| xferlog_enable=YES |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment