1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/nginx/templates/iiab.conf.j2

19 lines
383 B
Text
Raw Normal View History

2019-12-17 15:25:22 +00:00
location / {
rewrite ^/$ $1{{ iiab_home_url }};
2019-12-17 15:25:22 +00:00
}
location /usb {
2019-12-17 15:25:22 +00:00
alias /library/www/html/local_content/;
autoindex on;
}
location /local_content/ {
2019-12-17 15:25:22 +00:00
autoindex on;
}
2019-12-09 17:10:02 +00:00
location /modules/ {
fancyindex on; # Enable fancy indexes.
fancyindex_exact_size off; # Output human-readable file sizes.
fancyindex_ignore index.htmlf rachel-index.php;
}