Initial commit

This commit is contained in:
2025-12-26 14:51:20 +01:00
commit a0fa0ef9d9
9 changed files with 335 additions and 0 deletions

16
nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
# iCalendar MIME-Type
types {
text/calendar ics;
}
location / {
root /data;
autoindex off;
add_header Cache-Control "public, max-age=300";
add_header X-Content-Type-Options "nosniff";
}
}