Which web server software do you recommend?

https://lemmy.world/post/1335881

Which web server software do you recommend? - LemmyWorld

I want to host my website in my raspberry pi, I’ve read that I would need a web server software for this. Which one do you recommend? It won’t be a complex website.

Traefik.

Traefik can’t serve html itself though, can it?
It can route requests to a web server, but it can’t serve the files itself iirc.

This Stack Overflow post seems to confirm this: stackoverflow.com/…/is-there-a-way-to-serve-stati…

Is there a way to serve static resources with Traefik?

I'd like to serve static ressources such as images, js bundles, html pages... with Traefik like I was able to do with nginx # nginx config server { root /www/data; location ~ \.js { ...

Stack Overflow