proftpd.conf 1.1 KB

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