17 lines
243 B
Nginx Configuration File
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";
|
|
}
|
|
}
|