orhtej2 to Programmer Humor@programming.devEnglish · 5 days agoNever!eviltoast.orgimagemessage-square113linkfedilinkarrow-up11.3Karrow-down13
arrow-up11.3Karrow-down1imageNever!eviltoast.orgorhtej2 to Programmer Humor@programming.devEnglish · 5 days agomessage-square113linkfedilink
minus-squareCrayonDevourer@lemmy.worldlinkfedilinkarrow-up65·5 days agoMy domain is just used so I can reverse-proxy my homelab for people who don’t know anything about vpn, etc.
minus-squarethemeatbridge@lemmy.worldlinkfedilinkarrow-up18·5 days agoYeah, I use it for personal link sharing for Immich. Sharing photos is a breeze.
minus-squarematchaotter@lemmy.ziplinkfedilinkarrow-up2·4 days agoI got a domain that I only use for email right now but I’d love to set something like this up. Any recommendations on tutorials?
minus-squareXeno@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up2·3 days agoGet 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).
minus-squareCrayonDevourer@lemmy.worldlinkfedilinkarrow-up3·edit-23 days agoJust 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.
My domain is just used so I can reverse-proxy my homelab for people who don’t know anything about vpn, etc.
Yeah, I use it for personal link sharing for Immich. Sharing photos is a breeze.
I got a domain that I only use for email right now but I’d love to set something like this up. Any recommendations on tutorials?
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).
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.