CoolFace
Apppublic

pearlselvan/testreact

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
nginx.conf18 linesDownload Raw Back to root
1server {2    listen 7860;3    server_name _;4 5    root /usr/share/nginx/html;6    index index.html;7 8    location / {9        try_files $uri $uri/ /index.html;10    }11 12    # Cache static assets13    location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {14        expires 1y;15        add_header Cache-Control "public, immutable";16    }17}18