Setting Up Local Rsync Server Ubuntu

#etc/rsyncd.conf

GNU nano 2.2.6 File: /etc/rsyncd.conf

max connections = 30
log file = /var/log/rsync.log
timeout = 600

[rachelmods]
comment = Ready-to-use RACHEL
path = /home/jeremy/office/modules
read only = yes
list = yes
uid = nobody
gid = nogroup

[all]
comment = Ready-to-use RACHEL
path = /home/jeremy/office
read only = yes
list = yes
uid = nobody
gid = nogroup

install xinetd

eremy@js:~$ nano /etc/xinetd.d/rsync
GNU nano 2.2.6 File: /etc/xinetd.d/rsync

service rsync
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/bin/rsync
server_args = --daemon
log_on_failure += USERID
flags = IPv6
}