I'm a techie by trade who matured using proprietary technologies like Windows, but reached my breaking point once ads were introduced at the OS level. Since then I've been on something of a personal vendetta against big tech. It's been about 4 years now, and I thought I'd share my experience.
My first and predominant interest was securing a means of private communication that wasn't centralised. Like many before me, I stumbled upon Matrix. Adoption was problematic; I couldn't help people understand why using WhatsApp, Discord, etc. was a bad idea. But ultimately I managed to convince most of the people in my circle to migrate to my Matrix server by adding IdP (using Keycloak). The login is also tied to various other services, but the carrot that drew most of them in was my Jellyfin instance.
It's running on a home server with ~60TB of hard drive space, and each user also has access to Seerr for requesting content, so it's become quite an extensive library over time. Building the server cost somewhere in the region of 5k to set up (it hosts far more than just Jellyfin), plus a small monthly fee for the VPS I use as a reverse proxy. I offer everything free of charge as a labour of love for the people I care about.
I also provide free tech support to any of my users running any instance of Linux, both hardware and software. Windows users are advised to search their issues online, or allow me to install a dualboot Linux option to help them reach a resolution. I even go as far as offering a free 256GB NVMe for this purpose, provided they've a free M2 slot in their builds.
In my experience, bringing the layperson into the open source world is definitely possible, but it comes at great personal expense. People don't like change, but evidently they hate adverts even more so.
I'm keen to hear about others with similar experiences this far down the rabbit hole. what have you found that works in helping with wider adoption of open source technologies in your communities?
Its pretty rudimentary reverse proxy via VPN setup. Just Client - VPS - server, using a separate wireguard connection for each service for a zero trust setup.
I'm using an oldish github project called selfhosted-gateway for setup. It hasn't been updated in some time, but I'm still using it as the overhead on the VPS side is tiny compared to any other solution (like netbird for example) and honestly, it just works.
The setup is pretty simple, a docker container for the wireguard setup Is spun up on both sides creating a wireguard tunnel, with the home server container running nginx, that will expose the relevant container depending on config. The VPS side uses caddy which automatically handles TLS too, so its a quick and easy implementation once you get your head around it.