vsftpd 582 B

123456789101112131415161718
  1. # default: on
  2. # description:
  3. # The vsftpd FTP server serves FTP connections. It uses
  4. # normal, unencrypted usernames and passwords for authentication.
  5. # vsftpd is designed to be secure.
  6. service ftp
  7. {
  8. socket_type = stream
  9. wait = no
  10. user = root
  11. server = /usr/local/sbin/vsftpd
  12. # server_args =
  13. # log_on_success += DURATION USERID
  14. # log_on_failure += USERID
  15. nice = 10
  16. disable = no
  17. }