submitted 1 year ago* (last edited 1 year ago) by to c/selfhosted@lemmy.world
 

Today I set up my old laptop as a Debian server, hosting Immich (for photos), Nextcloud (for files), and Radicale (for calendar). It was surprisingly easy to do so after looking at the documentation and watching a couple videos online! Tomorrow I might try hosting something like Linkwarden or Karakeep.

What else should I self-host, aside from HA (I don’t have a smart home), Calibre (physical books are my jam), and Jellyfin (I don’t watch too many movies + don’t have a significant DVD/Blu-ray collection)?

I would like to keep my laptop confined to my local network since I don’t trust it to be secure enough against the internet.

edit: I forgot, I’m also hosting Tailscale so I can access my local network remotely!

you are viewing a single comment's thread
view the rest of the comments
[–] 23 points 1 year ago (2 children)
  • AdguardHome/Pi-Hole (for DNS Filter)
  • DrawIO (MS Visio equivalent)
  • Invidious (Youtube privacy frontend)
  • SearxNG (Google Privacy frontend)
  • Vaultwarden (Self-hosted Bitwarden server)
  • Miniflux (RSS Reader)
  • linkWarden (Link aggregator)

Also, checkout https://selfh.st/apps/

  • source
  • hideshow 4 child comments
  • [–] 10 points 1 year ago* (3 children)
    • SearxNG (Google Privacy frontend)

    SearXNG is more than just a front end for google search, it’s an aggregator, if configured properly can collect results from Bing, Startpage, Wikipedia, DuckDuckGo, Brave.

  • source
  • parent
  • hideshow 6 child comments
  • [–] 2 points 1 year ago (2 children)

    I'm no expert, but I read that self hosting your own instance doesn't actually help with privacy since the search providers still track those requests and if you're the only one using it, that's just tracking you with extra steps.

    Of course if you use a public instance, you have to then trust that the instance isn't tracking you

  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 1 year ago (1 child)

    Unless you are routing traffic through a VPN.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 1 year ago (1 child)

    How safe is it to self host something that you open up to the web? I've been thinking about a keepass self host, but I need it to be accessible from anywhere... I'm just really worried what that does once you open up your local server to the world

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 1 year ago*

    If you want to expose a container based service just for yourself over internet, you can -

    • If you have static IP4 or IPV6 - Setup Wireguard VPN on your homelab/server, and wireguard client on client devices[1].

    • If you are behind NAT or CGNAT - either Cloudflared Tunnel[2] or Tailscale[3].

    In either scenarios, you need to setup firewall of your server to allow connection from LAN to port of your docker container/services. By default you should set your firewall to block all incoming request from anywhere except LAN.

    I'm personally using Cloudflared Tunnel, but planning to migrate to Tailscale.

    [1] https://www.digitalocean.com/community/tutorials/how-to-set-up-wireguard-on-ubuntu-20-04

    [2] https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/

    [3] https://tailscale.com/

  • source
  • parent