this post was submitted on 12 Sep 2023
15 points (71.4% liked)

Open Source

30349 readers
982 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS
 

Does anyone here use a decent free plan for hosting Nextcloud online? Or is it really worth paying or selfhosting? Thanks :)

you are viewing a single comment's thread
view the rest of the comments
[–] nutbutter@discuss.tchncs.de 8 points 1 year ago (1 children)

I recommend setting up a home server using any old PC or laptop you have. Not having a static public IP may not be an issue, but if you are behind CGNAT, and cannot forward ports, you can route your data through a free provider like Oracle or Google. Those free servers are very weak but will be good enough to just pass through the data. This way even if they randomly decide to shut down and delete your instance, your data stays intact. I also recommend using SSL/TLS pass through, instead of termination, for better privacy.

[–] randomTingler@lemmy.world 1 points 1 year ago (1 children)

Is there a guide to set up an oracle cloud that points to my home server?

I guess I can set up multiple subdomains to access multiple services that are running on my homeserver with different ports.

[–] nutbutter@discuss.tchncs.de 2 points 1 year ago

TLS termination is very simple, and I have been doing that for years, now, but I trust my VPS provider. This is what you need to do for that. Install WireGuard on your Oracle VPS and your home server, and create a simple tunnel. Then install Nginx Proxy Manager (NPM) on your VPS. So, when you set up different services on your home server, say Nextcloud on port 8080, Jellyfin on port 3096, etc, all you have to do is point your NPM to these ports and use your WireGuard IP. NPM will also be able to issue certificates with no problems at all.

The concern with this is Oracle can (and probably will) sniff all the data that is going through. I have been trying to understand how to do the TLS pass through, but I have had no luck. Do share your experience if you do this.