this post was submitted on 11 Sep 2026
534 points (99.4% liked)

Selfhosted

62050 readers
1028 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
 

I've seen so many 10" servers that look amazing from the front and very polished, but then having a rats nest of cables and a mess at the back.

After 62 iterations and many 3D prints, blood, sweat, profanity and tears. I my design and implementation is finally done. image
I used Hexagons where possible, because as you know, Hexagons are the bestagons

This is Before:
image

And the After:
image
The ducky adds 200MHz

The front of my mini-rack is actually still somewhat of a mess, I thought I'd focus on the back first.

I've published it in excruciating detail on my GitHub Leave a Star if you like what you see.

I self host a bunch of stuff on here to get away from Big-Tech, and because I find it fun. For a lot more details see https://erasmus.works/

It always bothered me the the fronts of racs are modular, but not the backs, this solves that
If you have any questions feel free to ask, hopefully this helps other clear up their rats nests.

top 50 comments
sorted by: hot top controversial new old
[–] blockheadjt@sh.itjust.works 7 points 11 hours ago (1 children)

Serial power for anything with critical data... no thanks

One fails, everything after it fails

[–] Legion739@piefed.zip 4 points 5 hours ago (1 children)

My setup is as resilient as this would be: image

I haven't added any failure-modes

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

Huh? What is the mains cable mess for then?

[–] Legion739@piefed.zip 3 points 1 hour ago

I don't think I understand your question.

If you plug all your servers into a power strip like this, all the power goes through the power strip and through one cable. If there is a fault in the power strip, all the servers will lose power as a fuse will trip.

The same is true for my setup, I have added no new failure modes.

[–] Fmstrat@lemmy.world 2 points 10 hours ago (1 children)

This looks great! Any thought on relay control? I built an 8 outlet box with relays inside so I can direct control power to each server with a Raspberry Pi. It runs PiKVM and is also attached to an 8 port KVM for control.

[–] Legion739@piefed.zip 3 points 5 hours ago

Uggg don't give me ideas, I've already sunk way too much time into designing this 😅️🤣

So you could just put a relay between my power-module and your server, and it's problem solved.

A redesign to incorporate one of these would be great, there are also variants that monitor power draw, so you'd be able to see each servers power usage and switch it on or off remotely. image

Why are you doing this to me?

[–] M137@lemmy.today 3 points 11 hours ago (1 children)

I'm disappointed there's not a duck on each rack.

[–] Legion739@piefed.zip 3 points 5 hours ago

There are more duckies, a lil giraffe and a turtle at the front

[–] fufu@feddit.org 5 points 15 hours ago

Bestagons <3 great build!

[–] Malica@lemmy.zip 4 points 14 hours ago

Great job it looks fantastic

[–] Legion739@piefed.zip 106 points 1 day ago* (last edited 1 day ago) (3 children)

Preemptively responding to this, because I just know there's going to be a comment about this.

Yes Yes I know, GitHub, screw GitHub, Screw Microslop. I am trying to move away from Big Tech as much as possible, but it's a marathon not a sprint, and every win should be celebrated.

Perfection is the enemy of good.
.

[–] gratux@lemmy.blahaj.zone 27 points 1 day ago (1 children)

FYI, Codeberg/Forgejo can automatically migrate repositories including metadata: https://docs.codeberg.org/advanced/migrating-repos/#migrating-from-services

[–] Legion739@piefed.zip 47 points 1 day ago (1 children)

Thanks yea I've used Codeberg before, but the main reason I use GitHub, is I try to create a good looking profile to point potential new Clients to when I'm looking for a new job, explaining Codeberg to them I feel is a step too much, and my income is Priority Nr1.

I'll fight the Open-Source, anti-Big-Tech fight elsewhere.

[–] curbstickle@anarchist.nexus 27 points 1 day ago (2 children)

I totally get that

Quick heads up - codeberg has an option to auto push changes to github, or the other way around with a github action (I prefer codeberg first)

May want to give it a try, from a client perspective you can also use that to note that a distributed approach provides resiliency (and now it becomes a selling point too)

[–] Legion739@piefed.zip 13 points 23 hours ago (1 children)

Nice thanks, that sounds good. I'd definitely only want to push to one place, if it then syncs to GitHub that's fine.

[–] curbstickle@anarchist.nexus 6 points 23 hours ago (1 children)

I'm with you, I don't like having to do the same thing more than once

I set up an "about my repos" repo, which has a readme detailing the process, and explanations of what is where and what they are all for, which is what I point clients to. That also has a link to my personal forgejo to demo local git as well (which can also sync, btw) along with a note that it may be down for various reasons like updates or changes I'm making, which is why I also sync elsewhere.

Depending on what services you're selling to clients, it makes for a neat and simple addition to the list of skills to demo!

And you're kind of making me want to use a mini rack as an excuse to my wife for a 3d printer, but she already knows I'm not getting rid of my 12-15RU racks under my desks, so I'm going to have to wait until we find the property we want so I can build my workshop....

load more comments (1 replies)
[–] captcha_incorrect@lemmy.world 7 points 23 hours ago (1 children)

It seems that using multiple remotes is also possible. So instead of syncing two repos, push to both at once.

https://git-scm.com/docs/git-remote#Documentation/git-remote.txt-set-url

https://stackoverflow.com/questions/849308/how-can-i-pull-push-from-multiple-remote-locations/12795747#12795747

git remote set-url origin --push --add user1@repo1
git remote set-url origin --push --add user2@repo2
git remote -v
[–] curbstickle@anarchist.nexus 6 points 22 hours ago* (last edited 22 hours ago)

You can, but you can also run into some issues if you have git LFS, if one rejects for whatever reason, or sometimes just branch issues.

Thats why I prefer to go to one repo and push out from there, but it is absolutely doable with git by itself.

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

Way to head them off at the pass. Rock on with yo bad self.

[–] Blue_Morpho@lemmy.world 19 points 22 hours ago (1 children)

I don't understand the purpose of the exposed daisy chained cables. If it is not meant to be frequently unplugged, then why not wire an internal bus of 14 awg with Wago?

[–] Legion739@piefed.zip 19 points 22 hours ago (1 children)

I want it to be modular, so if I add another 2 servers, I can just add the server module in front, and its power module at the back.

[–] LastYearsIrritant@sopuli.xyz 4 points 12 hours ago (1 children)

It is pretty awesome, only real problem is that if you have to replace anything in the middle, you have to shutdown everything above it too.

That being said, it's pretty fucking rad.

[–] Legion739@piefed.zip 1 points 5 hours ago (1 children)

Yea I realised that is a limitation, but Eh I'd take that trade-off for the modularity and good looking backside.

It's rare that you add/remove things, and technically you can just plug out the inside and only that server will go offline with the rest keeping power.

[–] LastYearsIrritant@sopuli.xyz 3 points 1 hour ago

A homelab can accept a lot more downtime than a company that runs business off of a rack of servers.

A tradeoff between a sweet rack design for having to disassemble a little extra when replacing parts is a perfectly valid tradeoff for me.

Hell, most of us only run a single UPS, if any at all, which would have the same limitation.

[–] Nomad@infosec.pub 29 points 1 day ago (2 children)

Cool build. Please be aware there is a reason that Sockets are made from a plastic that does not melt nor burn. Everything near power connections is a potential fire hazard.

[–] Legion739@piefed.zip 22 points 1 day ago* (last edited 1 day ago) (1 children)

Thanks yea I made sure to add this Safety section to my write-up on how to build this yourself, and I reference back to it a lot, so it's painfully clear.

I printed this in PETG which can take the heat easily, but ideally you use UL 94 V-0 which is also flame retardant.

I did make sure everything is very well insulated, and pulled hard on every connection to make sure it's held down properly.

**Safety**  

This part carries live mains. Mains wiring kills people who get it wrong, and a fault in a printed enclosure can start a fire.  

Do not build it unless you are competent to wire mains and permitted to do so where you live. Sleeve or shroud all live terminals. PLA softens around 60 °C, PETG around 80 °C. Neither is flame retardant. Only a UL 94 V-0 filament is.  

Wire the protective earth if anything you plug in needs it.  

Build it at your own risk. I take no responsibility for injury, death, fire, or damage resulting from anything in this repository.  
[–] snrkl@lemmus.org 4 points 10 hours ago* (last edited 10 hours ago) (1 children)

I don't want to be the "Deputy Downer" here, but I can't stress the important of the v0 (we say v-naught) plastics in keeping you safe when it comes to electrical installations - for those that aren't aware, they are plastics that have to self extinguish once the fault trips the electrical protection, should a fault occur that sets them on fire. (ie: once the electricity isn't making it flame anymore, it has to put itself out)

Here is an example of how even low voltage DC can fault, and had the LED strip diffuser plastic not been v0 rated, we would have had a late night house fire into the roof when kids were asleep...

Laundry Light Fitting Failure

PETG in this kind of situation just becomes fuel and possible a very, very, very bad day....

I know v0 spools are more expensive, but cheaper than just about any of the disaster situation alternatives, so I always suggest you prototype with PLA/PETG but print v0 for the finals...

[–] Legion739@piefed.zip 1 points 5 hours ago

Thanks for this, I founds some self-extinguishing PETG, that's really not much more expensive than PETG. Definitely worth the money

https://shop.filament-pm.com/petg-frjet-self-extinguishing-white-1-75-mm-0-5-kg/p166

[–] cantstopthesignal@sh.itjust.works 4 points 23 hours ago (3 children)

Ya. I don't run more than 5A (basically a usb) through 3d printed stuff for that reason. Filament is designed to melt.

[–] Nomad@infosec.pub 1 points 4 hours ago

I think you want to say 5W? Amperage is just half of the equation. :)

[–] chiliedogg@lemmy.world 1 points 12 hours ago (1 children)

You run 5 amps through a USB?

[–] docandersonn@literature.cafe 1 points 10 hours ago

USB-PD standard allows for 20V at 5A?

[–] helix@feddit.org 5 points 22 hours ago (1 children)
[–] cantstopthesignal@sh.itjust.works 3 points 18 hours ago* (last edited 17 hours ago)

I was assuming some kind of 3.3V or 5V logic, like an esp32 or an arduino. I don't mess around with big power circuits at all. If I inject power it's going to be pretty low wattage. Sorry for the confusion.

[–] bootstrap@lemmy.dbzer0.com 21 points 1 day ago (1 children)

How is the power wired exactly? It looks like youve piggy backed off each cable before it, meaning the first cable is carrying the load from all after it which it usually isnt designed to do, should be fine if appropriately rated to the equipment.

Looks mint!

[–] Legion739@piefed.zip 28 points 1 day ago* (last edited 1 day ago) (1 children)

Yea each one runs through the previous module, so all the power goes through the first module.

IEC 13/14 connectors are rated for 10A (2300 W at 230 V) which isn't much lower than what you can run through your wall outlet. And in reality they can probably handle 15A(What your wall can handle) as they are commonly refereed to as "Kettle cords" and used by kettles which draw ~13 Amps.

That's very high, to give you an idea the 6 things I have plugged in draws ~240w, so I could chain up ~60 mini PC's and only then would I be over the ~2300w limit.

I do now mention this in the Safety section of my "How to build this" write up

[–] bootstrap@lemmy.dbzer0.com 10 points 1 day ago (1 children)

Looks like youve done your research!

Depending on the kettle model, most draw just under 10A these days. General household outlets (at least in australia) are only rated for 10A anyway.

Ive used hundreds of kettle leads in my time and never seen one used for an actual kettle funnily enough

load more comments (1 replies)
[–] SuspiciousCarrot78@aussie.zone 6 points 22 hours ago

I am...scaroused.

[–] SoulKaribou@lemmy.ml 4 points 21 hours ago

I have the same plants; you have good taste, it's undeniable

[–] Ertain@feddit.online 5 points 23 hours ago

Looking good.

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

Nice work OP. Clean and sharp. These mini servers are awesome.

load more comments
view more: next ›