Nginx

Nginx is a high performance simple HTTP server, which can also be used as a reverse proxy, load balancer, etc. Similar to Apache web server, however NGINX is much faster and more lightweight.

Serving static files with NGINX using Docker Tutorial 1

Serving static files with NGINX using Docker Tutorial 2

nginx.conf

events {}

http {
    server {
        listen 80;

        root /www;
        index index.html;

        location / {
            include  /etc/nginx/mime.types;
            try_files $uri $uri/ /index.html;
        }
    }
}