1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

initial checkin

This commit is contained in:
Tim Moody 2020-07-15 16:05:19 -04:00
parent 5440636746
commit 56b393c639
4 changed files with 19 additions and 0 deletions

View file

@ -26,3 +26,15 @@ location /js-menu/ {
fancyindex off; # autoindex off;
}
}
location /software/ {
fancyindex on; # Enable fancy indexes.
fancyindex_exact_size off; # Output human-readable file sizes.
location ~* \.(apk)$ {
add_header Content-Type application/vnd.android.package-archive;
}
location ~* \.(zim)$ {
add_header Content-Type application/zip;
}
}