Files
zen-kanji/client/nginx.conf
Rene Kievits e1bf8f2032
All checks were successful
Release Build / build-docker (push) Successful in 43s
Release Build / build-android-and-release (push) Successful in 2m11s
small prod changes
2025-12-24 16:20:44 +01:00

17 lines
313 B
Nginx Configuration File

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