The local backups are intended to store periodic copies of the MySQL and MSSQL databases for quick restoration.
SFO servers back up to backup.nyc (backup.nyc.mountainmeasurement.com)
apt install nfs-kernel-server
systemctl enable --now nfs-kernel-server.service
Add the backup folders to /etc/exports
For NYC Backup server (backs up SFO):
/mnt/backup/seekseekqua 64.23.238.68(rw,async,no_subtree_check,no_root_squash)
/mnt/backup/mariadb 146.190.47.159(rw,async,no_subtree_check,no_root_squash)
apt install nfs-common
mkdir /backups
Add the mountpoint to /etc/fstab. Here's an example for seekseekqua:
backup.nyc.mountainmeasurement.com:/mnt/backup/seekseekqua /backups nfs rsize=8192,wsize=8192,timeo=14,intr
Now mount the backup drive:
mount /backups