轻松镜像客户端站点

Easily Mirror Client sites

我需要弄清楚如何轻松地镜像客户的站点,但如果客户在站点上进行更改,则镜像需要同步。

一个例子是http://www.nailcotehall.co.uk mirrored here http://nailcotehall-px.rtrk.co.uk/index.html?utm_source=google&utm_medium=cpc&utm_campaign=NailcoteLandingPage

如果您有 linux/unix 个服务器并且对它们都具有 SSH 访问权限,您可以使用 rsync 将修改后的 files/directories 从一台服务器同步到另一台服务器。 例如:

rsync -a ~/dir1 username@remote_host:destination_directory

参见:http://www.tecmint.com/rsync-local-remote-file-synchronization-commands/

这可以通过 cron

进行周期性设置