chore: add index page recipe

This commit is contained in:
2024-01-05 12:34:55 +02:00
parent 56e97040d6
commit 6085e88f5e
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;
}
}