diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..74c8ba2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,17 @@ +events {} +http { + include mime.types; + + server { + listen 80; + access_log off; + error_log off; + + + location / { + root /app; + index index.html; + try_files $uri $uri/ /index.html; + } + } +} \ No newline at end of file