Using unison
to sync a copy of the full dokuwiki
data on the VPS to a Dropbox folder on my Shack PC, so that I have a backup copy, in the cloud in case of disaster. I'd hate to lose all the work that goes into writing this stuff…
~/.unison/dokuwiki.prf
fileroot = /home/gm4slv/Dropbox/Documents/dokuwiki root = ssh://gm4slv.org.uk//var/www/html/dokuwiki sshargs = -C
To account for making the laptop's copy into a git
repository I added:
ignore = Path .git
to the laptop config (see Github Repository ) — John Pumford-Green 29/05/22 00:29
~/.unison/dokuwiki.prf
fileroot = /home/gm4slv/dokuwiki root = ssh://gm4slv.plus.com:27659/Dropbox/Documents/dokuwiki sshargs = -C
Run the first time on the Shack PC to download the dokuwiki directory tree from the VPS
Everything is downloaded from the VPS and saved in the Dropbox folder, from where it is uploaded to the cloud.
I could automate the process, using various command line switches to automatically “do the right thing” without needing to answer Yes/No questions
unison -auto -batch -silent dokuwiki
and even put it in a cron job, but for now just running it every now and again manually might be enough.
If the VPS version of the dokuwiki ever gets totally screwed up I can restore it by running the same script from the other side and chosing which direction to do the sync in ( shack → VPS )
unison dokuwkiki
which will pull the last sync'd version from my backup to my home directory on the VPS ( i.e. not straight to /var/www/html/dokuwiki
) from where I can copy it back to the webserver directory.
I can run this command regularly to keep a mirror of the Dropbox backup on the VPS in case I need it later.
(update 28/5/22) I've added it to crontab
to run daily at 04:30:
#!/bin/bash unison -batch -auto -silent dokuwiki
crontab:
30 04 * * * /home/gm4slv/bin/dokuwiki_unison.sh >/dev/null 2>&1
I made a new github repository to hold the Dokuwiki folder tree, too. The laptop / Dropbox
backup, taken via Unison from the VPS server, is the local repository.
The workflow to keep things backed up:
unison -batch -auto dokuwiki
.git
folder isn't present on the VPS's webserver root but is in the unison backup directory on the laptop. Just ignore it?unison
to ignore the .git
folder by adding ignore = Path .git
to the prf
config file on laptop — John Pumford-Green 29/05/22 00:30
~/Dropbox/Documents/dokuwiki
git add .
git commit -m "backup"
git push
home
directory, run unison -batch dokuwiki
to pull the dropbox
copy back to the VPS
github
repository instead of using unison
Page Updated : 06/03/25 06:49 GMT