This commit is contained in:
krazyjosh5@ab1e3964e59d02a093b27f93562012e47aa2b4c9 2016-07-05 15:00:33 +00:00 committed by admin
parent dbfe33e88b
commit 94a8fe23f5

View file

@ -1,13 +1,13 @@
I'd like to accomplish something like this: I'd like to accomplish something like this:
* shared git-annex remote hosted by SSL server * shared git-annex remote hosted by SSH server
* file contents stored in S3 * file contents stored in S3
* everything encrypted * 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. The use case here is to achieve the availability of an SSH 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. Is this possible? If so, any suggestions on how to do it? I understand how to do everything, except configure the SSH 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'? Also, any thoughts on how much space the SSH 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! Thank you!