You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

52 lines
1.7 KiB

  1. # This is the default rssh config file
  2. # set the log facility. "LOG_USER" and "user" are equivalent.
  3. logfacility = LOG_USER
  4. # Leave these all commented out to make the default action for rssh to lock
  5. # users out completely...
  6. allowscp
  7. allowsftp
  8. #allowcvs
  9. #allowrdist
  10. #allowrsync
  11. # set the default umask
  12. umask = 022
  13. # If you want to chroot users, use this to set the directory where the root of
  14. # the chroot jail will be located.
  15. #
  16. # if you DO NOT want to chroot users, LEAVE THIS COMMENTED OUT.
  17. chrootpath = /home/root64-stable
  18. # You can quote anywhere, but quotes not required unless the path contains a
  19. # space... as in this example.
  20. #chrootpath = "/usr/local/my chroot"
  21. ##########################################
  22. # EXAMPLES of configuring per-user options
  23. #user=rudy:077:00010: # the path can simply be left out to not chroot
  24. #user=rudy:077:00010 # the ending colon is optional
  25. #user=rudy:011:00100: # cvs, with no chroot
  26. #user=rudy:011:01000: # rdist, with no chroot
  27. #user=rudy:011:10000: # rsync, with no chroot
  28. #user="rudy:011:00001:/usr/local/chroot" # whole user string can be quoted
  29. #user=rudy:01"1:00001:/usr/local/chroot" # or somewhere in the middle, freak!
  30. #user=rudy:'011:00001:/usr/local/chroot' # single quotes too
  31. # if your chroot_path contains spaces, it must be quoted...
  32. # In the following examples, the chroot_path is "/usr/local/my chroot"
  33. #user=rudy:011:00001:"/usr/local/my chroot" # scp with chroot
  34. #user=rudy:011:00010:"/usr/local/my chroot" # sftp with chroot
  35. #user=rudy:011:00011:"/usr/local/my chroot" # both with chroot
  36. # Spaces before or after the '=' are fine, but spaces in chrootpath need
  37. # quotes.
  38. #user = "rudy:011:00001:/usr/local/my chroot"
  39. #user = "rudy:011:00001:/usr/local/my chroot" # neither do comments at line end