updates on the design

This commit is contained in:
2026-07-29 18:44:19 +05:30
parent 7d672139b5
commit c17057f693
5 changed files with 162 additions and 137 deletions

18
nginx.conf Normal file
View File

@@ -0,0 +1,18 @@
events {}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# This line forces Nginx to pass routing back to React Router
try_files $uri $uri/ /index.html;
}
}
}