Spaces:
Running
Running
| 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"; | |
| } | |
| error_page 500 502 503 504 /50x.html; | |
| location = /50x.html { | |
| root /usr/share/nginx/html; | |
| } | |
| } | |