proftpd.conf 919 B

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