basic.conf
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. # This is a basic ProFTPD configuration file (rename it to 
  2. # 'proftpd.conf' for actual use.  It establishes a single server
  3. # and a single anonymous login.  It assumes that you have a user/group
  4. # "nobody" and "ftp" for normal operation and anon.
  5. ServerName "ProFTPD Default Installation"
  6. ServerType standalone
  7. DefaultServer on
  8. # Port 21 is the standard FTP port.
  9. Port 21
  10. # Umask 022 is a good standard umask to prevent new dirs and files
  11. # from being group and world writable.
  12. Umask 022
  13. # To prevent DoS attacks, set the maximum number of child processes
  14. # to 30.  If you need to allow more than 30 concurrent connections
  15. # at once, simply increase this value.  Note that this ONLY works
  16. # in standalone mode, in inetd mode you should use an inetd server
  17. # that allows you to limit maximum number of processes per service
  18. # (such as xinetd)
  19. MaxInstances 30
  20. # Set the user and group that the server normally runs at.
  21. User nobody
  22. Group nogroup
  23. # Normally, we want files to be overwriteable.
  24. <Directory /*>
  25.   AllowOverwrite on
  26. </Directory>
  27. # A basic anonymous configuration, no upload directories.
  28. <Anonymous ~ftp>
  29.   User ftp
  30.   Group ftp
  31.   # We want clients to be able to login with "anonymous" as well as "ftp"
  32.   UserAlias anonymous ftp
  33.   # Limit the maximum number of anonymous logins
  34.   MaxClients 10
  35.   # We want 'welcome.msg' displayed at login, and '.message' displayed
  36.   # in each newly chdired directory.
  37.   DisplayLogin welcome.msg
  38.   DisplayFirstChdir .message
  39.   # Limit WRITE everywhere in the anonymous chroot
  40.   <Limit WRITE>
  41.     DenyAll
  42.   </Limit>
  43. </Anonymous>