On the design note: do not point a backup program at a mounted remote as if it were a local disk.
Backup tools that expect a real filesystem will do a large number of small operations, and over a network mount that is slow enough to turn a nightly job into a permanent one — and the failure modes on interruption are worse, because a partial write to a remote through a mount is not the same as a partial write to a disk.
Most of these tools can talk to remote storage directly as a backend, without any mount at all. That path is designed for it, handles retries, and is dramatically faster. If you are mounting purely so a backup tool can see the storage, check whether it supports the backend natively first.