chore: add index page recipe

This commit is contained in:
2024-01-05 12:34:55 +02:00
parent ed7ed5d5d9
commit fc9391dd5f
5 changed files with 70 additions and 0 deletions

9
recipes/index/nginx.conf Normal file
View File

@ -0,0 +1,9 @@
server {
listen 80;
location /repo {
rewrite ^/repo/(.*) /$1 break;
autoindex on;
root /srv/ahriman/repository;
}
}