Spaces:
Build error
Build error
| server { | |
| listen 7860; | |
| server_name localhost; | |
| root /usr/share/nginx/html; | |
| index index.html index.htm; | |
| location / { | |
| try_files $uri $uri/ /index.html; | |
| } | |
| # Cache static assets | |
| location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot|mp4|webm)$ { | |
| expires 1y; | |
| add_header Cache-Control "public, immutable"; | |
| } |