Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. # This is a basic ProFTPD configuration file (rename it to
  2. # 'proftpd.conf' for actual use. It establishes a single server
  3. # and a single anonymous login. It assumes that you have a user/group
  4. # "daemon" and "ftp" for normal operation and anon.
  5.  
  6. ServerName "ProFTPD"
  7. ServerType standalone
  8. DefaultServer on
  9.  
  10. # Port 21 is the standard FTP port.
  11. Port 21
  12. # Umask 022 is a good standard umask to prevent new dirs and files
  13. # from being group and world writable.
  14. Umask 022
  15.  
  16. # To prevent DoS attacks, set the maximum number of child processes
  17. # to 30. If you need to allow more than 30 concurrent connections
  18. # at once, simply increase this value. Note that this ONLY works
  19. # in standalone mode, in inetd mode you should use an inetd server
  20. # that allows you to limit maximum number of processes per service
  21. # (such as xinetd)
  22. MaxInstances 30
  23.  
  24. # Set the user and group that the server normally runs at.
  25. User nobody
  26. Group admin
  27.  
  28. # Normally, we want files to be overwriteable.
  29. <Directory /Applications/XAMPP/xamppfiles/htdocs/*>
  30. AllowOverwrite on
  31. </Directory>
  32.  
  33. # only for the web servers content
  34. DefaultRoot /Applications/XAMPP/xamppfiles/htdocs
  35.  
  36. <Limit SITE_CHMOD>
  37. DenyAll
  38. </Limit>
  39.  
  40. # daemon gets the password "xampp"
  41. UserPassword nobody wRPBu8u4YP0CY
  42.  
  43. # daemon is no normal user so we have to allow users with no real shell
  44. RequireValidShell off
  45.  
  46. # daemon may be in /etc/ftpusers so we also have to ignore this file
  47. #to login with "OSX Users"
  48. AuthPAM on
  49. AuthPAMConfig ftpd
  50. UseFtpUsers off
  51.  
  52. user: nobody
  53. pass: wRPBu8u4YP0CY
  54. host: 192.168.1.17
  55. port: 21
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement