| 12345678910111213141516171819202122232425 | worker_processes  1;events {    worker_connections  1024;}http {    include       /etc/nginx/mime.types;    default_type  application/octet-stream;    sendfile        off;    keepalive_timeout  65;    server {        listen       ${NGINX_PORT};        server_name  localhost;        location / {            try_files $uri $uri/ /index.html;            root   /opt/app/build;            index  index.html;        }    }}
 |