I am trying to build the following infrastructure.
- Server 1 - DB Server
- 2 - Web server to host the web app itself Server
- 3 - Web server for serving web app static files (like product images, css, js etc) to relieve Server 2 load for static content and let it only process the dynamic part.
I am trying to avoid an object storage like AWS S3 or DO Spaces as I am not really interested into that so what kind of server software shall I use on Server 3 to fulfill its purpose in a good manner in terms of performance?
Thanks