Files
RelayOps/frontend/nginx.conf
2026-06-07 02:32:28 +03:00

18 lines
338 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
# Serve the built SPA directly and keep unknown routes on index.html.
try_files $uri $uri/ /index.html;
}
location /assets/ {
expires 1h;
add_header Cache-Control "public";
}
}