diff --git a/frontend/minattest-app/nginx.conf b/frontend/minattest-app/nginx.conf new file mode 100644 index 0000000..9ba98f1 --- /dev/null +++ b/frontend/minattest-app/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name _; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri /index.html; + } +}