diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 16:14:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 16:14:32 +0000 |
commit | 8ea997b6315ec29d6ddd5bf1232ef46dfb18151f (patch) | |
tree | 6ed8422504a14f49b53eacf48f737f0565b27fcd /debian/rsyncd.conf | |
parent | Adding upstream version 3.2.7. (diff) | |
download | rsync-8ea997b6315ec29d6ddd5bf1232ef46dfb18151f.tar.xz rsync-8ea997b6315ec29d6ddd5bf1232ef46dfb18151f.zip |
Adding debian version 3.2.7-1.debian/3.2.7-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rsyncd.conf')
-rw-r--r-- | debian/rsyncd.conf | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/debian/rsyncd.conf b/debian/rsyncd.conf new file mode 100644 index 0000000..a147b84 --- /dev/null +++ b/debian/rsyncd.conf @@ -0,0 +1,44 @@ +# sample rsyncd.conf configuration file + +# GLOBAL OPTIONS + +#motd file=/etc/motd +#log file=/var/log/rsyncd +# for pid file, do not use /var/run/rsync.pid if +# you are going to run rsync out of the init.d script. +# The init.d script does its own pid file handling, +# so omit the "pid file" line completely in that case. +# pid file=/var/run/rsyncd.pid +#syslog facility=daemon +#socket options= + +# MODULE OPTIONS + +[ftp] + + comment = public archive + path = /var/www/pub + use chroot = yes +# max connections=10 + lock file = /var/lock/rsyncd +# the default for read only is yes... + read only = yes + list = yes + uid = nobody + gid = nogroup +# exclude = +# exclude from = +# include = +# include from = +# auth users = +# secrets file = /etc/rsyncd.secrets + strict modes = yes +# hosts allow = +# hosts deny = + ignore errors = no + ignore nonreadable = yes + transfer logging = no +# log format = %t: host %h (%a) %o %f (%l bytes). Total %b bytes. + timeout = 600 + refuse options = checksum dry-run + dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz |