Advertisement
Guest User

Untitled

a guest
Apr 6th, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.34 KB | None | 0 0
  1. #
  2. # /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
  3. # To really apply changes reload proftpd after modifications.
  4. #
  5.  
  6. # Includes DSO modules
  7. Include /etc/proftpd/modules.conf
  8.  
  9. # Set off to disable IPv6 support which is annoying on IPv4 only boxes.
  10. UseIPv6                         on
  11. # If set on you can experience a longer connection delay in many cases.
  12. IdentLookups                    off
  13.  
  14. ServerName                      "ubuntu"
  15. ServerType                      inetd
  16. DeferWelcome                    off
  17.  
  18. MultilineRFC2228                on
  19. DefaultServer                   on
  20. ShowSymlinks                    on
  21.  
  22. TimeoutNoTransfer               600
  23. TimeoutStalled                  600
  24. TimeoutIdle                     1200
  25.  
  26. DisplayLogin                    welcome.msg
  27. DisplayChdir                    .message true
  28. ListOptions                     "-l"
  29.  
  30. DenyFilter                      \*.*/
  31.  
  32. # Use this to jail all users in their homes
  33. DefaultRoot        /var/www ubuntu
  34. User               nobody
  35. Group              nogroup
  36.  
  37. # Users require a valid shell listed in /etc/shells to login.
  38. # Use this directive to release that constrain.
  39. # RequireValidShell             off
  40.  
  41. # Port 21 is the standard FTP port.
  42. Port                            21
  43.  
  44. "/etc/proftpd/proftpd.conf" 173L, 4796C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement