proftpd.conf 1.1 KB

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