blob: 8bc6c624307ef71d56a40a600b026739a2b87f0c [file] [log] [blame]
Michael Hwangd2a9bf72018-07-12 17:17:34 -04001worker_processes 1;
2
3events {
4 worker_connections 1024;
5}
6
7http {
8 include mime.types;
9 default_type application/octet-stream;
10
11 sendfile on;
12
13 keepalive_timeout 65;
14
15 server {
16 listen 80;
17 root /usr/share/nginx/html;
18 index index.html index.htm;
19 location / {
20 try_files $uri $uri/ /index.html =404;
21 }
22 }
23}