Build Retur dead-letter sorting game

This commit is contained in:
Fredrik Johansson
2026-07-20 19:45:59 +02:00
commit b69131c540
18 changed files with 2270 additions and 0 deletions

16
nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:css|js|svg|webp|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
}