diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..1e37726 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,6 @@ +server { + listen 80; + root /usr/share/nginx/html; + index index.html; + try_files $uri $uri/ /index.html; +}