chore: docker

This commit is contained in:
2026-04-21 09:12:48 +02:00
parent 38518f013e
commit ebb5956053
5 changed files with 229 additions and 41 deletions
+16
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 ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}