orhtej2@eviltoast.org to Programmer Humor@programming.devEnglish · 7 days agoNever!eviltoast.orgexternal-linkmessage-square115fedilinkarrow-up11.33Karrow-down13
arrow-up11.32Karrow-down1external-linkNever!eviltoast.orgorhtej2@eviltoast.org to Programmer Humor@programming.devEnglish · 7 days agomessage-square115fedilink
minus-squareXeno@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up2·5 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-25 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.
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.