proftpd.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. IdentLookups off
  26. AllowOverwrite yes
  27. <Limit ALL SITE_CHMOD>
  28. AllowAll
  29. </Limit>
  30. </Global>