From 19fbc10360a33550c22ad6b28f3162314513f5ff Mon Sep 17 00:00:00 2001 From: "krazyjosh5@ab1e3964e59d02a093b27f93562012e47aa2b4c9" Date: Tue, 5 Jul 2016 09:07:54 +0000 Subject: [PATCH] --- doc/forum/git-annex_SSH_server_+_cloud_remote.mdwn | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 doc/forum/git-annex_SSH_server_+_cloud_remote.mdwn diff --git a/doc/forum/git-annex_SSH_server_+_cloud_remote.mdwn b/doc/forum/git-annex_SSH_server_+_cloud_remote.mdwn new file mode 100644 index 0000000000..3c0cb4aa75 --- /dev/null +++ b/doc/forum/git-annex_SSH_server_+_cloud_remote.mdwn @@ -0,0 +1,13 @@ +I'd like to accomplish something like this: + +* shared git-annex remote hosted by SSL server +* file contents stored in S3 +* everything encrypted + +The use case here is to achieve the availability of an SSL server (that is, multiple clients will sync to one, main server, eliminating a dependency on each other) and a single source of truth for the repository (i.e. eliminating P2P repo synchronization), and having the bulk of the disk space consumption living on S3 hosting. + +Is this possible? If so, any suggestions on how to do it? I understand how to do everything, except configure the SSL server to store annexed files on S3 hosting. + +Also, any thoughts on how much space the SSL server's git repo (without annexed files) could possibly grow to, with average use? Is it reasonable to say that it would never get bigger than 'tens of megabytes'? + +Thank you!