Files
igmg-ics/nginx.conf
2025-12-26 14:51:20 +01:00

17 lines
243 B
Nginx Configuration File

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";
}
}