I AM ABSOLUTELY BEGGING Y'ALL.

If you are bringing back personal/hobby/small-business websites (and you should be), enable RSS.

And TLS, but that's a whole other thing.

@patcharcana largely agreed although Atom is a much nicer spec than RSS and supported just as widely

@patcharcana also TLS is way easier to do with Caddy than nginx. You'd only need one docker container at most and the basic configuration that sets up TLS with Let's Encrypt via ACME is just:

yourdomain.example.com { reverse_proxy http://localhost:8080 # assuming your web server is on port 8080 }
This will also automatically enyable QUIC as long as you open UDP port 443 in your firewall.

And Caddy can act as a server for a static website by itself, then you use the
file_server directive instead of reverse_proxy.