diff options
Diffstat (limited to 'vsftpd/vsftpd.conf')
| -rw-r--r-- | vsftpd/vsftpd.conf | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/vsftpd/vsftpd.conf b/vsftpd/vsftpd.conf deleted file mode 100644 index 28ad4e06fc..0000000000 --- a/vsftpd/vsftpd.conf +++ /dev/null | |||
| @@ -1,105 +0,0 @@ | |||
| 1 | # Opendreambox /etc/vsftpd.conf | ||
| 2 | # | ||
| 3 | # Please see vsftpd.conf.5 for all compiled in defaults. | ||
| 4 | # | ||
| 5 | # READ THIS: This example file is NOT an exhaustive list of vsftpd options. | ||
| 6 | # Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's | ||
| 7 | # capabilities. | ||
| 8 | # | ||
| 9 | # Allow anonymous FTP? (Beware - allowed by default if you comment this out). | ||
| 10 | anonymous_enable=NO | ||
| 11 | # | ||
| 12 | # Uncomment this to allow local users to log in. | ||
| 13 | local_enable=YES | ||
| 14 | # | ||
| 15 | # Uncomment this to enable any form of FTP write command. | ||
| 16 | write_enable=YES | ||
| 17 | # | ||
| 18 | # Default umask for local users is 077. You may wish to change this to 022, | ||
| 19 | # if your users expect that (022 is used by most other ftpd's) | ||
| 20 | #local_umask=022 | ||
| 21 | # | ||
| 22 | # Uncomment this to allow the anonymous FTP user to upload files. This only | ||
| 23 | # has an effect if the above global write enable is activated. Also, you will | ||
| 24 | # obviously need to create a directory writable by the FTP user. | ||
| 25 | #anon_upload_enable=YES | ||
| 26 | # | ||
| 27 | # Uncomment this if you want the anonymous FTP user to be able to create | ||
| 28 | # new directories. | ||
| 29 | #anon_mkdir_write_enable=YES | ||
| 30 | # | ||
| 31 | # Activate directory messages - messages given to remote users when they | ||
| 32 | # go into a certain directory. | ||
| 33 | dirmessage_enable=YES | ||
| 34 | # | ||
| 35 | # Activate logging of uploads/downloads. | ||
| 36 | #xferlog_enable=YES | ||
| 37 | # | ||
| 38 | # Make sure PORT transfer connections originate from port 20 (ftp-data). | ||
| 39 | connect_from_port_20=YES | ||
| 40 | # | ||
| 41 | # If you want, you can arrange for uploaded anonymous files to be owned by | ||
| 42 | # a different user. Note! Using "root" for uploaded files is not | ||
| 43 | # recommended! | ||
| 44 | #chown_uploads=YES | ||
| 45 | #chown_username=whoever | ||
| 46 | # | ||
| 47 | # You may override where the log file goes if you like. The default is shown | ||
| 48 | # below. | ||
| 49 | #xferlog_file=/var/log/vsftpd.log | ||
| 50 | # | ||
| 51 | # If you want, you can have your log file in standard ftpd xferlog format | ||
| 52 | #xferlog_std_format=YES | ||
| 53 | # | ||
| 54 | # You may change the default value for timing out an idle session. | ||
| 55 | #idle_session_timeout=600 | ||
| 56 | # | ||
| 57 | # You may change the default value for timing out a data connection. | ||
| 58 | #data_connection_timeout=120 | ||
| 59 | # | ||
| 60 | # It is recommended that you define on your system a unique user which the | ||
| 61 | # ftp server can use as a totally isolated and unprivileged user. | ||
| 62 | #nopriv_user=ftpsecure | ||
| 63 | # | ||
| 64 | # Enable this and the server will recognise asynchronous ABOR requests. Not | ||
| 65 | # recommended for security (the code is non-trivial). Not enabling it, | ||
| 66 | # however, may confuse older FTP clients. | ||
| 67 | async_abor_enable=YES | ||
| 68 | # | ||
| 69 | # By default the server will pretend to allow ASCII mode but in fact ignore | ||
| 70 | # the request. Turn on the below options to have the server actually do ASCII | ||
| 71 | # mangling on files when in ASCII mode. | ||
| 72 | # Beware that turning on ascii_download_enable enables malicious remote parties | ||
| 73 | # to consume your I/O resources, by issuing the command "SIZE /big/file" in | ||
| 74 | # ASCII mode. | ||
| 75 | # These ASCII options are split into upload and download because you may wish | ||
| 76 | # to enable ASCII uploads (to prevent uploaded scripts etc. from breaking), | ||
| 77 | # without the DoS risk of SIZE and ASCII downloads. ASCII mangling should be | ||
| 78 | # on the client anyway.. | ||
| 79 | #ascii_upload_enable=YES | ||
| 80 | #ascii_download_enable=YES | ||
| 81 | # | ||
| 82 | # You may fully customise the login banner string: | ||
| 83 | ftpd_banner=Welcome to the OpenDreambox FTP service. | ||
| 84 | # | ||
| 85 | # You may specify a file of disallowed anonymous e-mail addresses. Apparently | ||
| 86 | # useful for combatting certain DoS attacks. | ||
| 87 | #deny_email_enable=YES | ||
| 88 | # (default follows) | ||
| 89 | #banned_email_file=/etc/vsftpd.banned_emails | ||
| 90 | # | ||
| 91 | # You may specify an explicit list of local users to chroot() to their home | ||
| 92 | # directory. If chroot_local_user is YES, then this list becomes a list of | ||
| 93 | # users to NOT chroot(). | ||
| 94 | #chroot_list_enable=YES | ||
| 95 | # (default follows) | ||
| 96 | #chroot_list_file=/etc/vsftpd.chroot_list | ||
| 97 | # | ||
| 98 | # You may activate the "-R" option to the builtin ls. This is disabled by | ||
| 99 | # default to avoid remote users being able to cause excessive I/O on large | ||
| 100 | # sites. However, some broken FTP clients such as "ncftp" and "mirror" assume | ||
| 101 | # the presence of the "-R" option, so there is a strong case for enabling it. | ||
| 102 | ls_recurse_enable=YES | ||
| 103 | # | ||
| 104 | secure_chroot_dir=/dev/shm | ||
| 105 | local_root=/ | ||
