Michael Stapelberg 🐧🐹😺 on Nostr: Earlier I was about to start the nginx + certbot dance, but then I decided I can’t ...
Earlier I was about to start the nginx + certbot dance, but then I decided I can’t be bothered and just installed Caddy!
Caddy does HTTPS certificate management in an entirely automatic way. No need to integrate two separate pieces of software, you just write something like:
https://caddy.example.net {
root /srv/caddy.example.net
file_server
}
…done! Or maybe you want to reverse-proxy to a Go service? Add:
handle /* {
reverse_proxy /* http://localhost:2080
}
done! 😍 #golang #caddy
Caddy does HTTPS certificate management in an entirely automatic way. No need to integrate two separate pieces of software, you just write something like:
https://caddy.example.net {
root /srv/caddy.example.net
file_server
}
…done! Or maybe you want to reverse-proxy to a Go service? Add:
handle /* {
reverse_proxy /* http://localhost:2080
}
done! 😍 #golang #caddy