I get your point in general, but I think some points are odd.
For example, Apache overly complicates a simple task. A web server is simple, the only moving parts in a web request are:
TLS - mostly just a cert pair and some config if you want to restrict what clients to support (security concerns)
HTTP headers
URL routing
You can learn the details of HTTP in about 15 minutes on Wikipedia, whereas you probably won't get past the introduction in Apache docs in that time. It's like learning to drive on a big rig with double clutches. Why do that if you don't need to?
With a typical self-hosted setup, you can keep it simple and only have your webserver handle the first and pass the rest on to the relevant service. You're unlikely to need load balancing, malicious request detection, etc, you just need to trunk TLS and route things.
You're not gaining anything by learning a complex tool to accomplish a simple task.
I'm a developer and I've written tons of web servers, and I see zero point in apache or even nginx for a home lab setup when I could (and have) write a simple reverse proxy in something like Go in about 30 minutes. It's easy, handle TLS and HTTP (both built in to standard library), then send it along to the relevant service. It's probably easier to build that than learn nginx or Apache syntax.
There's certainly more to it if you consider high load systems like in an enterprise, but the average home user doesn't need all that.
Caddy does everything I need:
renew Let's Encrypt certs
proxy based on subdomain
I've done it the hard way, and I don't feel like I gained anything. Everything involved is simple:
TLS - keypair; server needs both, clients just need the pub key
HTTP - one line with HTTP verb, URL, and version, then lines with headers as key/value pairs (to route, you only need the URL)
renewals - most will copy paste an acme client invocation anyway
I've done it "the hard way" by scripting up cron and configuring Nginx, but what's the value of learning that when your web-server can do it automatically for you? Gate keeping?
I agree in general that people should learn how things work. Learn what TLS, HTTP, and whatnot are and do so you can debug stuff. But don't feel obligated to learn complex software when you just need something simple.
In other words, YAGNI: You Ain't Gonna Need It. Or KISS: Keep It Stupid Simple. Don't copy paste "magic" Apache or Nginx incantations from the internet, use something simple and focus on learning fundamentals.