this post was submitted on 11 Sep 2026
354 points (99.2% liked)

Selfhosted

62027 readers
1100 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 43 comments
sorted by: hot top controversial new old
[–] aqua_cat@pawb.social 5 points 2 hours ago (3 children)
[–] Fondots@lemmy.world 3 points 1 hour ago (1 children)

I mean, Erasmus is a pretty well-known historical figure (and where, I assume, that programme gets its name)

That's where my mind went first.

Turns out we're both wrong and it's just OP's name like he said in the other comment, but I'm curious how you made that connection? Not passing any judgement on it, just curious since your brain reached a different conclusion than mine and I'm curious how you got there.

[–] aqua_cat@pawb.social 2 points 22 minutes ago

I rolled into it few months ago and am getting ready for a exchange trip to Spain so it got burned into my brain by now.

[–] Legion739@piefed.zip 11 points 2 hours ago* (last edited 2 hours ago) (1 children)
[–] aqua_cat@pawb.social 1 points 21 minutes ago

erasmus is a perfectly cromulent name

[–] SoulKaribou@lemmy.ml 3 points 3 hours ago

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

[–] Blue_Morpho@lemmy.world 15 points 5 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 11 points 4 hours ago

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.

[–] Legion739@piefed.zip 81 points 8 hours ago* (last edited 7 hours ago) (2 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 21 points 8 hours 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 38 points 7 hours 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 16 points 6 hours 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 7 points 5 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 2 points 5 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....

[–] Legion739@piefed.zip 2 points 4 hours ago

Nice thanks!! You can get a 3D printer for fairly cheap to get started, the one I have is only 280 Euro now with 4 spools of filament

[–] captcha_incorrect@lemmy.world 3 points 5 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 3 points 5 hours ago* (last edited 5 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 10 points 7 hours ago

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

[–] SuspiciousCarrot78@aussie.zone 6 points 5 hours ago

I am...scaroused.

[–] herseycokguzelolacak@lemmy.ml 2 points 4 hours ago

This is so organized that my eyes hurt. You should see my messy setup :(

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

Looking good.

[–] Nomad@infosec.pub 22 points 8 hours 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 15 points 8 hours ago* (last edited 7 hours ago)

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.  
[–] cantstopthesignal@sh.itjust.works 2 points 5 hours ago (1 children)

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

[–] helix@feddit.org 5 points 4 hours ago (1 children)
[–] cantstopthesignal@sh.itjust.works 1 points 39 minutes ago* (last edited 38 minutes ago)

I'm 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 19 points 8 hours 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 23 points 7 hours ago* (last edited 7 hours 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 7 points 7 hours 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

[–] fozid@lem.radiantfig.fyi 3 points 6 hours ago

uk can go to 13A peak load on the standard 230v socket, but drawing that for a prolonged period will nuke the socket. 10a prolonged is perfectly safe in the uk.

[–] irmadlad@lemmy.world 5 points 7 hours ago

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

[–] ravenn@lemmy.blahaj.zone 7 points 8 hours ago

mega ducky 200 is amazing

super clean build

[–] one_old_coder@piefed.social 5 points 8 hours ago (1 children)

Thanks for the photos and web site, it shows a bit what is happening inside and it's great.

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

Sure thing, there's lots more details on my GitHub Write-Up including how to wire it up etc.

image image

[–] ggtdbz@lemmy.dbzer0.com 4 points 5 hours ago

I’ve thought about this exact problem and I find this very pleasing to look at. Nice work

[–] happyborg@fosstodon.org 4 points 8 hours ago (1 children)

@Legion739 nice, good job as they say. Mine will never look neat and tidy but I appreciate the pics all the same.

[–] Legion739@piefed.zip 3 points 8 hours ago* (last edited 8 hours ago) (2 children)

Thanks!! Designing it was a BITCH, I knew almost nothing about CAD going into this, but hopefully my designs can help some others cleanup the power side of their racks.

It was a lot of fun learning though, and now I've made proper use of my 3D printer.

[–] happyborg@fosstodon.org 3 points 8 hours ago (1 children)

@Legion739 Did you 3D print yourself or send the designs away? What did you use software wise?

Just curious, I don't have time for this atm but love the idea, so maybe one day.

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

I have the Anycubic Kobra X, and used Onshape to 3D model things, it's fairly easy to do. I for some reason just decided to make something incredibly complicated lol.

Lots of good YouTube tutorials out there to teach you everything you'd need to know.

[–] happyborg@fosstodon.org 1 points 8 hours ago (1 children)

@Legion739 oh, I see you have a printer! Which one?

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

I have the Anycubic Kobra X, you can buy it for 280 Euro including 4 roles of filament.

It's the first one I ever got, great price and quality for getting your feet wet with 3D printing. My boy-math figured that it will pay for itself eventually by printing things instead of buying.

[–] happyborg@fosstodon.org 1 points 7 hours ago

@Legion739 thanks, I'll look it up for the future.