Add frontend/minattest-app/nginx.conf

This commit is contained in:
2025-11-17 11:15:09 +00:00
parent 745538bc87
commit d760364f63
+11
View File
@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}