FeedGine launch

This commit is contained in:
2026-04-22 10:57:37 +02:00
commit 32b6ceba80
26 changed files with 4620 additions and 0 deletions

25
nginx.conf Normal file
View File

@@ -0,0 +1,25 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# Redirect /index.html to /
location = /index.html {
return 301 /;
}
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
gzip on;
gzip_types text/plain text/css application/javascript image/svg+xml;
}