proftpd.conf 965 B

123456789101112131415161718192021222324252627
  1. LoadModule mod_vroot.c
  2. ServerName "FTP"
  3. ServerIdent on "FTP Server ready."
  4. ServerAdmin root@localhost
  5. DefaultServer on
  6. VRootEngine on
  7. DefaultRoot ~ !adm
  8. AuthPAMConfig proftpd
  9. AuthOrder mod_auth_pam.c* mod_auth_unix.c
  10. UseReverseDNS off
  11. User proftpd
  12. Group nogroup
  13. MaxInstances 20
  14. UseSendfile off
  15. LogFormat default "%h %l %u %t \"%r\" %s %b"
  16. LogFormat auth "%v [%P] %h %t \"%r\" %s"
  17. ListOptions -a
  18. RequireValidShell off
  19. <Global>
  20. Umask 002
  21. IdentLookups off
  22. AllowOverwrite yes
  23. <Limit ALL SITE_CHMOD>
  24. AllowAll
  25. </Limit>
  26. </Global>