this post was submitted on 26 Sep 2025
1297 points (99.8% liked)

Programmer Humor

26629 readers
855 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] XenoK@lemmy.dbzer0.com 2 points 1 day ago (1 children)

Get started with a Linux server and then I'd go with something like Nextcloud in a Docker container. Then do reverse proxy, nginx on the host is very easy. You can get and update SSL certs with certbot (Let's Encrypt).

[โ€“] CrayonDevourer@lemmy.world 3 points 1 day ago* (last edited 1 day ago)

Just do Caddy instead of nginx/cerbot all that garbage. Caddy just simply handles it all for you: Subdomains, wildcard certs, authentication, ssl

My whole caddy config file is like 6 lines; something like

@mydomain.com {

ipaddress:port

path:/

}

And you can do all sorts of plugins that make it compatible with fail2ban, etc.

I hear Traefik is pretty easy to set up too.