| 123456789101112131415161718192021222324 | 
							- 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       80;
 
-         server_name  localhost;
 
-         location / {
 
-             root   /opt/app/build;
 
-             index  index.html;
 
-         }
 
-     }
 
- }
 
 
  |