[ PHPXref.com ] [ Generated: Sun Jul 20 18:16:01 2008 ] [ ISPConfig 2.2.1 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> vsftpd.conf (source)

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


[ Powered by PHPXref - Served by Debian GNU/Linux ]