ui/docker/nginx.conf
myrmidex e235cec8a3
All checks were successful
Build and Push Docs Image / build (push) Successful in 4m23s
Fix 404 on static assets behind the regex location block
2026-08-23 19:47:50 +02:00

16 lines
392 B
Nginx Configuration File

server {
listen 80;
server_name _; # behind a reverse proxy; match any Host
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ =404;
}
location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
root /usr/share/nginx/html;
expires 1y;
add_header Cache-Control "public, immutable";
}
}