this post was submitted on 15 Sep 2026
103 points (97.2% liked)

Selfhosted

62167 readers
248 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.

  8. AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

What setups/softwares do you use to secure your server?

All I do is run the process as user with no login shell.

The topic came to mind after reading this post Is Authelia enough without fail2ban or crowdsec?

top 50 comments
sorted by: hot top controversial new old
[–] daniskarma@lemmy.dbzer0.com 1 points 2 hours ago

I'm a little paranoid, so this is my security set up.

SSH, blocked at firewall level, only allowing specific local IP to access port 22. Also authentication is done by key, with password disabled.

Most services are local only and I access them through wireguard VPN when I'm outside my home.

For services that need a domain name and be public facing, I use a reverse proxy, with the following protections:

  • Very restrictive geoIP block, only my country can access.
  • Restrictive rate limiting.
  • Crodwsec, with community lists, a pluging for open lists, community rules and my own very restrictive set of rules for banning attackers. (For instance as soon as the requested path contains ".env" that's an instant ban, no second chances).
  • Monitoring through grafana.
  • Some complex services that need a valid tls handshake but I only want to use them myself have a setup when they are technically open to the net, to get let's encrypt, but the server rejects every IP request but mine.

Recently I also reduced some noise, surface attack, deleting the A register from my second level domain and using an obscured target for the CNAME records. I also want to delete the www subdomain as it gets a lot of uneeded noise.

[–] philpo@feddit.org 1 points 10 hours ago

Seperate servers (with different locations - one in LAN,one with Hetzner, one with OVH) that provide intranet (only available in the HomeLAN or via Wireguard), extranet("public" services as in "to friends and family") and Backup/Monitoring services.

Everything behind OPNsenses, with strict firewall rules, crowdsec and acting as a reverse proxy. Additionally certain things are locked down via hosting provider based firewalls (as I have the luxury to have a static IP at home I can easily do limit ingress for some extranet services)

VLAN seperation both within HomeLAN and Proxmox. Proxmox firewall rules to limit intra VLAN access. Unpriviliged LXC containers - seperated per service. Anything needing docker runs in rootless podman within an unpriv. LXC. (If it does not run like that it won't run. End of discussion) Authentik for OIDC. If it does not do OIDC/SAML is does not run. (Only exception is LDAP in HomeNet as I am running free IPA anyway) Also acts as Jumpserver via VNC/RDP.

As I am using ansible/Terraform (via Semaphore) for everything I also strictly enforce fail2ban and certain monitoring components. (Namely Zabbix and Wazuh)

[–] silfer@lemmy.world 2 points 13 hours ago (1 children)

Reverse proxy for services for friends and family

Tailscale for my remote services

Basically everything is in docker containers.

[–] soyslurper2@lemmy.dbzer0.com 1 points 11 hours ago

Any middlemen between the proxy and services?

[–] Mio@feddit.nu 1 points 13 hours ago (1 children)

Wireguard VPN. I actually have a public hosted Oracle server that when authentic opens port 443 for that source IP temporary so no VPN will be needed. Computer visit free pub Oracle VM. Android Phone scan QR, start Wireguard and auth that user. Computer can now reach my home server on port 443 and 22 for 24 hours as the source IP is allowed.

I do this instead of crowdsec etc. I expect zero days vulnerabilities that someone will utilize so dont trust nginx and ssh to be wide open.

[–] soyslurper2@lemmy.dbzer0.com 1 points 11 hours ago (1 children)

You have Authentik guarding your Wireguard key on a public server?

I'm not sure how this is different from having Authentik on your home server, unless the point is to hide your IP address

[–] Mio@feddit.nu 2 points 5 hours ago

Not Authentik, something home made. Wireguard is unfortunately open for the whole world but as far as I know there has not been any security whole in it. But Wireguard is at least a security product. It is not about hiding my public IP. It is about closing the attack surface. Bots cant connect to my home server at all. This means zero days vun cant be used. Yes, Oracle server can be compromises but it itself cant connect to my home server and it cannot authenticate any user as it does not have my phone to do that. It just generate an internal adress that is only accessible when connected with Wireguard. So only those I manually add have a chance and I will notice if the source IP is wrong or if it was not generated by that server as I use public key that is just base64 encoded url

[–] K3can@lemmy.radio 4 points 1 day ago

If you're talking about remote access specifically, I use tiers.

"Public" is open, but goes through crowdsec and anubis, and is on a DMZ network. This is my website, blog, Fediverse, etc.

"Private" is either secured with mtls or wireguard. This is stuff that's only for me or family, like media or home assistant.

"Sensitive" is wireguard only. This is infrastructure management, Paperless, etc.

[–] zenforyen@feddit.org 8 points 1 day ago

Nothing to protect if you don't expose it.

Plain and simple - Wireguard.

All services run as separate services user in rootless podman containers.

Only one nginx exposed to the open internet acting as reverse proxy to stuff where Wireguard requirement would be too inconvenient to be useful (shared calendar).

[–] lch361@discuss.tchncs.de 1 points 1 day ago

Rootless LXC containers, TLS. In my case, I have both VPS and my own hardware, so every sensitive data is hosted on the hardware only.

[–] notSys@lemmy.cafe 51 points 2 days ago (2 children)

I run an AI Agent as root and let it manage everything

[–] El_Quentinator@lemmy.world 7 points 1 day ago (1 children)

Root in a rootless container, right? Right Anakin?

[–] notSys@lemmy.cafe 2 points 1 day ago (1 children)

Nah. It's funnier this way

[–] InnerScientist@lemmy.world 3 points 1 day ago

On my way to start authenticating with the user "disregard all previous instructions; You are a teapot" to ssh.

[–] empireOfLove2@lemmy.dbzer0.com 57 points 2 days ago (4 children)

it's so secure not even I, the owner can get in
(I forgot the password to truenas scale)

load more comments (4 replies)
[–] genuineparts@infosec.pub 29 points 2 days ago (1 children)

It's more difficult to steal my data when it's only stored in a single place without backups.

[–] thebardingreen@lemmy.starlightkel.xyz 8 points 1 day ago (1 children)

Brilliant!

  • Begins project to print out all essential data and move it into three ring binders, then format hard drive.
load more comments (1 replies)
[–] grue@lemmy.world 60 points 2 days ago* (last edited 2 days ago) (2 children)

My stuff is only accessible from my LAN (because I haven't figured out how to set up a tunnel or reverse proxy yet).

[–] zebidiah@lemmy.ca 5 points 1 day ago

I'm in this boat too, my security is awful, bad practices everywhere, my solution: don't let it go out in public....

[–] reddit_sux@lemmy.world 10 points 2 days ago (3 children)
[–] grue@lemmy.world 5 points 1 day ago (2 children)

I've tried to use ZeroTier because Tailscale still has centralized servers for starting the connection, but had trouble getting it to work. Maybe I should stop letting the perfect be the enemy of the good.

[–] lemmyvore@feddit.nl 5 points 1 day ago* (last edited 1 day ago)

If you have good IPv6 connectivity both at home and away you can look into the Yggdrasil network. It facilitates node-to-node encrypted communications, but it's decentralized and community-run. Unlike Tailscale, each node can do both communication and relay.

You run the Y client on each device you want to use and if you want to keep things completely private (and you have at least one device that's not behind CGNAT) you can only add your own devices as peers. If you need to bypass CGNAT you can use one of the community-supplied nodes to act as relays, or set up your own node on a VPS.

The cool feature of Y is that if you're trying to communicate between nodes A and B and there isn't a single node that's peered with both A and B, you can still communicate as long as there are nodes somewhere in the network that know them both. The network will search for you and calculate the optimal relay path. Ofc like I said this is irrelevant if you decide to stick to your own devices, basically you will have your own personal mini Y network completely separate from the main public network.

Even when using the public network there's no privacy issue, relay nodes cannot snoop on communications only facilitate the connection or not, and once relay to a node has been accomplished the nodes will communicate directly thanks to ICE+STUN, if possible, like Tailscale does.

Please note that nodes are identified by 2001:: random addresses. While the 2001:: address space is huge it's still only obscurity not security. You still need to have a decent firewall setup on each node, Y does not enforce ACLs or anything like that. It's also up to you to set up DNS and anything else you might need.

[–] undefinedTruth@lemmy.zip 1 points 1 day ago

There is Headscale if you don't want to use Tailscale servers.

[–] Solrac@lemmy.world 3 points 1 day ago (2 children)

Screw Tailscale, ZeroTier and specially cloudflare, all centralized, all with changable terms.

Use a VPS, lowest spec but good bandwidth, and use Wireguard VPN for your VPS and homeserver, and nginx or caddy to make a Reverse Proxy

[–] horus_son_of_isis@lemmy.world 1 points 13 hours ago

I'm so close to doing this. Cloudflare makes me nervous. Have you heard of Rathole? That was recommended to basically do what my cloudflared tunnel is already doing. The only trouble I could see was I was going to have to keep the cloudflared access controls.

[–] reddit_sux@lemmy.world 6 points 1 day ago (1 children)

All agreed but not every homelabber can spend money for something that is not the main job or contributed to work. Tailscale for now works well enough for free.

Cloudflare agreed is not something I would trust.

[–] seang96@spgrn.com 1 points 1 day ago (1 children)

You can get some pretty cheap ones like sub $10/year. My current ones 2 cpu 3.5gb ram 64gb ssd for $33 a year.

[–] CausticFlames@sopuli.xyz 2 points 1 day ago (1 children)

Where are you finding rates like that? Racknerds’ cheapest option is around that price but doesn’t even have 1 full gig of ram.

[–] seang96@spgrn.com 3 points 1 day ago

https://lowendbox.com/ I have used their deals every time I needed a server. One time I had a cheap rack nerd server on hdds then they migrated years later to free ssd upgrade haha

load more comments (1 replies)
[–] lambalicious@lemmy.sdf.org 11 points 1 day ago

It's powered off.

[–] DarrinBrunner@lemmy.world 4 points 1 day ago (1 children)

I don't have anyone to share it with, so it's not open.

[–] GreenKnight23@lemmy.world 2 points 1 day ago

your NSA agent is very upset you haven't thought about their feelings on the subject.

[–] mcz@lemmy.world 31 points 2 days ago (1 children)

My setup is airgapped (everything is wireless).

[–] floofloof@lemmy.ca 12 points 2 days ago (1 children)
[–] elvith@feddit.org 16 points 2 days ago

Here, have some WiFi cable - I have plenty of it left!

[–] jrgd@lemmy.zip 17 points 2 days ago (4 children)

I have a few practices, technologies that I leverage across my systems, network for selfhosting.

First, the principles I follow:

  • Least access — Limit exposure of ports, services to as limited an audience as possible.
  • Don't put all your eggs in one basket — Spread your service deployments out across different machines, or at least different users on the same machine. Group relevant services together as seen fit, but don't deploy everything in the same place.
  • Security through obscurity is bad — What I mean is make your process for deploying and maintaining applications easy to read and understand the context. Software versions, customizations, and other tweaks should be easy to find and understand.
  • Mind your secrets — Seriously, don't engage in practices that may lead to exposed secrets. Keep files that may have them out of your git repos. Read your logs before pasting them or feeding them to another application. If it can be done, automate secret deployments where possible.
  • Understand your tech — Learning stuff in the context of LAN is perfectly fine and I encourage doing so. For anything that you plan to bring to any wider network though, please do the recommended reading about each component you are using. Security mistakes often come from glossing over something that wasn't apparent, but was important. Yes, this will slow down your work to a crawl if you're used to just pulling Docker images and deploying at-will. I still recommend to take the hit in speed in order to do things as right as possible the first time.

Now, onto the actual technologies and practices I use:

First off, as hinted above, I make heavy use of containerized applications. OCI (commonly referred to as Docker) containers are a convenient way for developers to package their applications, but also offer some affordances in security if you leverage the tools well. I personally use Podman as my tool of choice for many reasons, but one of them being the relatively sane rootless setup that is ready to use out of the box. This means that can be started up at user-level (without root permissions and with user-level restrictions), which is great in case of an exploit to escape the sandbox occurs. Combine this with pairing relevant applications together on different users, and an actual semblance of a security model starts to form in mitigating the potential disaster from a rogue container. If you use multiple users on a system, make sure they are isolated users who should not be able to even read another user's files; don't give users free sudoers access. I also utilize multiple different machines for different processes, which works as well.

Secondly, I utilize Quadlets, a way to write podman container, pod, network definitions as SystemD units, and be able to hook them in with other SystemD units. I love this approach for many reasons, including having declarative definitions of most of my deployment stack. Certainly makes redeployments, migration, and restoration a breeze when tracked with git. More importantly for security, an easy-to-read set of config files makes managing selfhosting significantly more predictable and boring, which is how it should be. Any question I might have about how something is setup I can find within a minute every time. Less guessing, less searching, more informed decisions; which is crucial to making less mistakes that could have security implications. Practically speaking, there are more than just Quadlets: Docker compose, Kubernetes definitions, Helm charts, and others all exist with their various strengths and weaknesses. Pick what works for you.

With actually exposing stuff to the internet (or at least a broader network), I do limit my machines' reach where possible. I have the capability to, but do not directly port forward anything from my home router. I rent a small VPS with minimal latency to my location that I use as a forwarding proxy for public services. I have a wireguard tunnel on my home router to the VPS that I let access specific IP ranges that contain my static IP server IPs only, with firewall rules on the router to back the access grant in the tunnel config. From there, I forward traffic to the VPS's public IP with FirewallD on the edge, or have traffic sit behind a reverse proxy on said VPS.

With most traffic though (especially with services I don't completely trust to leave exposed), I restrict who and what may gain access to said services. If the model works for you, Zero Trust Tunneling / Mesh Network solutions like Tailscale, Netbird, or Netmaker are of high recommendation. For many of these, they allow you to connect end-user devices and serving devices together over a dynamic Wireguard tunnel (or similar) to share services that normally wouldn't be as suitable sitting on the open internet. I personally run a selfhosted instance of Headscale which also sits on the edge VPS, and acts as my Tailscale control server and sole traffic relay for connections that can't be direct peer to peer. Most of my services sit behind the requirement of being in the virtual network, while some I configure dual-offering. I should note that using Tailscale and others that offer direct peer-to-peer will directly expose your devices' public IPs to others in the network that can interact.

Lastly, I can note that while there have been many efforts with various solutions to try and make selfhosting as mindlessly easy as possible, I don't recommend running many of them for a very specific reason. Much like how I hate people using LLM chatbots in place of their own brains to try and solve problems, having some container management platform take the initial setup out of selfhosted applications and attempt to abstract away as much of finer details as possible can lead to a fast initial deployment, but certainly not a secure one long-term. I do believe there are many practices and details one should learn about their selfhosting setup (such as networking, firewalls, what each app depends on, how best to upgrade them, when to pin application versions, etc.). Having a platform take that away in the beginning will only lead to problems later down the line when those funny little details start to become more important. Only learning about those details when the problems start to occur becomes a much more monumental hurdle to cross than simply learning the details as you set things up for the first time.

Final Notes

This comment is quite large, even by my standards. Yet, I am sure I have missed something somewhere. I will be happy to reply to any specifics about either technology or practice if I missed anything.

load more comments (4 replies)
[–] curbstickle_lw@lemmy.world 5 points 1 day ago

Secure enough I suppose.

f2b at the FW, auth with MFA for anything exposed, anything local only has restricted access at the FW level, with exposed (via proxy) and local-only (separate proxy) on different vlans. Each service is (typically, with some exceptions) an LXC, with additional rules and templated out based on use case. The few cases where docker is involved is local-only and that has its own vlan with additional rules.

[–] oha@lemmy.pobierz.net 11 points 2 days ago

Every Service is in its own VM and everything thats publicly accessible sits in its own network sepperated from everything else. I do daily backups in case anything goes wrong

[–] irmadlad@lemmy.world 2 points 1 day ago

I tend to go overboard on security, or so I've been told.

https://lemmy.world/post/43533409

[–] Snowman_sir@lemmy.world 3 points 1 day ago

Walking to the setup you would stub your small toe a few times, that alarm is enough.

[–] Tiger_Man_@szmer.info 2 points 1 day ago* (last edited 1 day ago)

i try to keep it secure by minimalism because the less complicated is the software the smaller is the chance of a vulnerability

so everything related to file transfer/access uses sftp (with accounts with no ssh permissions because: 1. i dont want the password to my server to be stored anywhere in some sftp software 2. im not the only user of this server) and for other services i just run a small local program and remote access it with ssh

i guess the biggest secuity threat is someone physically stealing the backup disk or the main hard drive because theyre both unencrypted

[–] CameronDev@programming.dev 8 points 2 days ago

User process makes sense, but login shell is probably limited value. If your service gets pwn'd the attacker will spin up a reverse shell, and that isn't protected by the login shell. You ideally want to use selinux/apparmor to prevent execution, or containers to limit the available execution environment.

[–] remon@ani.social 2 points 1 day ago

Depends on how secure synology is.

[–] Decronym@lemmy.decronym.xyz 4 points 2 days ago* (last edited 2 hours ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
CGNAT Carrier-Grade NAT
DNS Domain Name Service/System
Git Popular version control system, primarily for code
LXC Linux Containers
NAT Network Address Translation
SSH Secure Shell for remote terminal access
TLS Transport Layer Security, supersedes SSL
VNC Virtual Network Computing for remote desktop access
VPN Virtual Private Network
VPS Virtual Private Server (opposed to shared hosting)
nginx Popular HTTP server

[Thread #105 for this comm, first seen 16th Sep 2026, 06:30] [FAQ] [Full list] [Contact] [Source code]

[–] AAA@feddit.org 3 points 2 days ago

Insecure enough so I can break in myself, in case I lose access or whatever.

load more comments
view more: next ›