Replies: 2 comments 3 replies
-
In fact, using storage backends via
Now, rustic doesn't support the possibility to access rclone via stdio. Using TCP is generally the better and easier way, but has the drawback that you have to handle ports and maybe network security. In your case this means, you should start |
Beta Was this translation helpful? Give feedback.
-
Hm. Unfortunately I can't do port forwarding in this situation (can't forward ports on the remote host. I'd have to proxy TCP.
Is there any reason TCP is easier/better? That tends to have quite a bit of overhead, requires figuring out ports, and has security implications (websites in the local browser can likely access a running rclone instance this way unless you're protecting it somehow).
|
Beta Was this translation helpful? Give feedback.
-
I'm using a Hetzner (I know, probably not the best) storage box and have setup restic to backup with to rclone over ssh by following this tutorial: https://ruderich.org/simon/notes/append-only-backups-with-restic-and-rclone
Basically:
This lets me configure a "restricted" shell on the remote machine that only runs a specific
rclone serve restic
command in append-only mode.Is there any way to replicate this behavior with rustic? If not, is there a better way to do this (backblaze, I guess...)?
Beta Was this translation helpful? Give feedback.
All reactions