Blame sanity/vsftpd.conf

8de75c8
# Example config file /etc/vsftpd/vsftpd.conf
8de75c8
#
8de75c8
# The default compiled in settings are fairly paranoid. This sample file
8de75c8
# loosens things up a bit, to make the ftp daemon more usable.
8de75c8
# Please see vsftpd.conf.5 for all compiled in defaults.
8de75c8
#
8de75c8
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
8de75c8
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
8de75c8
# capabilities.
8de75c8
#
8de75c8
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
8de75c8
anonymous_enable=YES
8de75c8
#
8de75c8
# Uncomment this to allow local users to log in.
8de75c8
local_enable=YES
8de75c8
#
8de75c8
# Uncomment this to enable any form of FTP write command.
8de75c8
write_enable=YES
8de75c8
#
8de75c8
# Default umask for local users is 077. You may wish to change this to 022,
8de75c8
# if your users expect that (022 is used by most other ftpd's)
8de75c8
local_umask=022
8de75c8
#
8de75c8
# Uncomment this to allow the anonymous FTP user to upload files. This only
8de75c8
# has an effect if the above global write enable is activated. Also, you will
8de75c8
# obviously need to create a directory writable by the FTP user.
8de75c8
anon_upload_enable=YES
8de75c8
#
8de75c8
# Uncomment this if you want the anonymous FTP user to be able to create
8de75c8
# new directories.
8de75c8
anon_mkdir_write_enable=YES
8de75c8
#
8de75c8
# Activate directory messages - messages given to remote users when they
8de75c8
# go into a certain directory.
8de75c8
dirmessage_enable=YES
8de75c8
#
8de75c8
# Activate logging of uploads/downloads.
8de75c8
xferlog_enable=YES
8de75c8
#
8de75c8
# Make sure PORT transfer connections originate from port 20 (ftp-data).
8de75c8
connect_from_port_20=YES
8de75c8
#
8de75c8
# If you want, you can arrange for uploaded anonymous files to be owned by
8de75c8
# a different user. Note! Using "root" for uploaded files is not
8de75c8
# recommended!
8de75c8
#chown_uploads=YES
8de75c8
#chown_username=whoever
8de75c8
#
8de75c8
# You may override where the log file goes if you like. The default is shown
8de75c8
# below.
8de75c8
#xferlog_file=/var/log/vsftpd.log
8de75c8
#
8de75c8
# If you want, you can have your log file in standard ftpd xferlog format.
8de75c8
# Note that the default log file location is /var/log/xferlog in this case.
8de75c8
xferlog_std_format=YES
8de75c8
#
8de75c8
# You may change the default value for timing out an idle session.
8de75c8
#idle_session_timeout=600
8de75c8
#
8de75c8
# You may change the default value for timing out a data connection.
8de75c8
#data_connection_timeout=120
8de75c8
#
8de75c8
# It is recommended that you define on your system a unique user which the
8de75c8
# ftp server can use as a totally isolated and unprivileged user.
8de75c8
#nopriv_user=ftpsecure
8de75c8
#
8de75c8
# Enable this and the server will recognise asynchronous ABOR requests. Not
8de75c8
# recommended for security (the code is non-trivial). Not enabling it,
8de75c8
# however, may confuse older FTP clients.
8de75c8
#async_abor_enable=YES
8de75c8
#
8de75c8
# By default the server will pretend to allow ASCII mode but in fact ignore
8de75c8
# the request. Turn on the below options to have the server actually do ASCII
8de75c8
# mangling on files when in ASCII mode.
8de75c8
# Beware that on some FTP servers, ASCII support allows a denial of service
8de75c8
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
8de75c8
# predicted this attack and has always been safe, reporting the size of the
8de75c8
# raw file.
8de75c8
# ASCII mangling is a horrible feature of the protocol.
8de75c8
ascii_upload_enable=YES
8de75c8
ascii_download_enable=YES
8de75c8
#
8de75c8
# You may fully customise the login banner string:
8de75c8
#ftpd_banner=Welcome to blah FTP service.
8de75c8
#
8de75c8
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
8de75c8
# useful for combatting certain DoS attacks.
8de75c8
#deny_email_enable=YES
8de75c8
# (default follows)
8de75c8
#banned_email_file=/etc/vsftpd/banned_emails
8de75c8
#
8de75c8
# You may specify an explicit list of local users to chroot() to their home
8de75c8
# directory. If chroot_local_user is YES, then this list becomes a list of
8de75c8
# users to NOT chroot().
8de75c8
#chroot_list_enable=YES
8de75c8
# (default follows)
8de75c8
#chroot_list_file=/etc/vsftpd/chroot_list
8de75c8
#
8de75c8
# You may activate the "-R" option to the builtin ls. This is disabled by
8de75c8
# default to avoid remote users being able to cause excessive I/O on large
8de75c8
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
8de75c8
# the presence of the "-R" option, so there is a strong case for enabling it.
8de75c8
#ls_recurse_enable=YES
8de75c8
#
8de75c8
# When "listen" directive is enabled, vsftpd runs in standalone mode and 
8de75c8
# listens on IPv4 sockets. This directive cannot be used in conjunction 
8de75c8
# with the listen_ipv6 directive.
8de75c8
listen=YES
8de75c8
#
8de75c8
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
8de75c8
# sockets, you must run two copies of vsftpd whith two configuration files.
8de75c8
# Make sure, that one of the listen options is commented !!
8de75c8
#listen_ipv6=YES
8de75c8
8de75c8
pam_service_name=vsftpd
8de75c8
userlist_enable=YES
8de75c8
tcp_wrappers=YES