rsyncd.tpl.conf 533 B

12345678910111213141516171819202122
  1. # /etc/rsyncd.conf
  2. # Minimal configuration file for rsync daemon
  3. # See rsync(1) and rsyncd.conf(5) man pages for help
  4. # This line is required by the /etc/init.d/rsyncd script
  5. pid file = /var/run/rsyncd.pid
  6. uid = ${OWNER_ID}
  7. gid = ${GROUP_ID}
  8. use chroot = ${CHROOT}
  9. reverse lookup = no
  10. [${VOLUME_NAME}]
  11. hosts deny = *
  12. hosts allow = ${HOSTS_ALLOW}
  13. read only = ${READ_ONLY}
  14. path = ${VOLUME_PATH}
  15. # auth users = , ${USERNAME}:ro
  16. # secrets file = /etc/rsyncd.secrets
  17. timeout = 600
  18. transfer logging = true