this post was submitted on 25 Jul 2024
387 points (94.5% liked)

Technology

57918 readers
8382 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] mightyfoolish 3 points 1 month ago (1 children)

A system that needs ID verification to access a site is a problem. What if it's used for other websites as well?

[–] thorbot 1 points 1 month ago (1 children)

Then I won’t browse to them any more

[–] mightyfoolish 1 points 1 month ago (1 children)

Yeah, that could work; however, it would be a hassle. Just remember to save everything important locally.

[–] [email protected] 3 points 1 month ago (1 children)

One step ahead of you, I'm actively replacing all of my online accounts with self-hosted alternatives. My state passed both porn ID and social media ID laws, and I assume they'll try to add this to anything with age gates (e.g. streaming sites).

So I'm moving my stuff to my personal cloud:

  • Jellyfin - I'm going back to buying Blurays and DVDs and adding them to my own streaming service
  • NextCloud/ownCloud - still playing with it, but I got Collabora set up for docs and spreadsheets, at it supports calendar sync as well
  • Vaultwarden - working on switching from the hosted Bitwarden
  • Actual Budget - I switched from Mint -> TillerHQ (hosted at Google Docs), and this is the next step (it integrates with SimpleFIN for bank sync)

All of this is available both over my self-hosted VPN, and over the internet with certain services exposed over my domain (all use LetsEncrypt certificates). So I can access whatever I want wherever I am. I do offsite backups with Backblaze B2 ($6/month/TB), and I sync important stuff to my phone w/ syncthing.

It's a bit of a pain, but there's no way my state can take any of that away from me. I'll be adding more services as I find time, and I've got a good system now where a new service only takes a few minutes to spin up. Basically, my setup process is:

  1. add subdomain for the service to my DNS - could use a wildcard, but I like control and ability to move things around
  2. add haproxy config at my VPS - just copy/paste like a dozen lines of config
  3. update Caddyfile on my NAS to handle the new service - again, copy like 5 lines
  4. add and configure container in my compose.yml
  5. docker compose up -d (to build the new service) followed by docker compose restart to get Caddy to reload the config

Caddy fetches the TLS certificates, and docker handles setting up the service. Unless I make a mistake. Since everything is in docker, I don't need any ports exposed except 80 and 443, which is managed by Caddy.

I wouldn't have bothered if Netflix had kept reasonable rates for ad-free watching, but here we are. And now my state is being a pain, so I'll probably configure my WIFI with a VPN out of state so I don't have to deal with the stupid ID verification crap.

[–] mightyfoolish 1 points 1 month ago (1 children)

This is fantastic. Hopefully, crazy politics will at least have a side effect of all of this self hosted software becoming easier. It's gotten to the point where companies like Hetzner will maintain nextcloud services for a monthly fee but Caddy is already more intuitive compared to what came before it.

[–] [email protected] 2 points 1 month ago

Yup. I'm thinking of making a blog series or something about my setup. It's a little complex, but the individual pieces are pretty simple, so anyone with time and interest could totally replicate it. Mine would focus on Linux, but since everything is in containers, it could easily be replicated on Windows as well.

Oh, and I'm working from the worst possible setup, I'm behind CGNAT, so I have to go through an outside server to make my internal stuff public. A lot of people can just use their router IP instead, which eliminates the VPN entirely (just port forwards from your router).