Files
Dock-Dploy/nginx.conf
hhftechnologies 1493fb099f Initial commit
2025-11-18 12:38:48 +05:30

16 lines
311 B
Nginx Configuration File

server {
listen 3000;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}