first commit

This commit is contained in:
Om Prakash Das
2026-07-02 18:39:11 +05:30
commit ed3eba27ec
251 changed files with 36276 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/css application/javascript application/json image/svg+xml font/woff2;
gzip_min_length 1024;
# Hashed build assets can be cached forever.
location /assets/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# SPA fallback.
location / {
try_files $uri $uri/ /index.html;
}
}