Add 'frontend/' from commit 'cf68d2d2e49c2f83124e1f8cea287745e07deb08'

git-subtree-dir: frontend
git-subtree-mainline: 5caa4e6761
git-subtree-split: cf68d2d2e4
This commit is contained in:
2026-09-12 22:35:24 +02:00
61 changed files with 11509 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_min_length 256;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 5;
gzip_buffers 16 8k;
include /etc/nginx/mime.types;
types {
application/javascript mjs;
}
location / {
try_files $uri $uri/ /index.html;
}
}