Files
work-queue-webui/docker/nginx.conf
Lennie S. 20baf040fb
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m18s
Add Dockerfile, nginx config, and Gitea Actions CI workflow
2026-04-12 00:29:26 +00:00

17 lines
313 B
Nginx Configuration File

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