Is there any good zero-trust cloud solution out there? My dream would be something like #Restic that would put locally-encrypted blobs on any distant storage and would open it as a FUSE volume.
Does something like this exist? 🙏

Edit for clarification: I'd like to store files remotely, but with client-side encryption, so they're still safe if the remote server is compromised (and so I can backup them to another non-trusted server easily if needed).

@poxviridae "zero-trust cloud solution" for what problem?

@eliasp For storing my personal data on my server, access it from my laptop, backup my server data on a distant machine, and not being too worried if one of them is stolen.

Right now I could just store everything on my laptop but most of my data are just archives or medias that I don't need everyday so it would free space on my laptop if I could put them somewhere else. And encrypted containers like Veracrypt are nice but not really practical for tens or hundreds of gigs.

But I'm by no mean an expert on that matter so any thought or alternative recommendation would be greatly appreciated too! :)

@poxviridae Not 100% sure what you're looking for, but maybe JuiceFS with encryption switched on would do what you need? https://juicefs.com/
JuiceFS - Open Source Distributed POSIX File System for Cloud

JuiceFS is a cloud-based high-performance distributed file system, based on object storage and database to achieve data and metadata separation architecture, easily carrying tens of billions of file storage, to meet the random read performance requirements of big data, AI, autonomous driving, gene sequencing and other massive data.

@AndrewMc Oh that looks interesting, I'll edit my toot for clarification, but this seems to be exactly what I was looking for. Thank you!