diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..09c5c28 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,8 @@ +server { + listen 4200; + + location / { + root /usr/share/nginx/html; + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file