proftpd.conf 963 B

123456789101112131415161718192021222324252627
  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. PassivePorts 12000 12100
  19. <Global>
  20. Umask 002
  21. IdentLookups off
  22. AllowOverwrite yes
  23. <Limit ALL SITE_CHMOD>
  24. AllowAll
  25. </Limit>
  26. </Global>