add docker setup for hosting the repo

This commit is contained in:
2025-10-09 21:02:20 +02:00
parent 7480ed630d
commit 19aaa4aeb0
5 changed files with 57 additions and 22 deletions
+17
View File
@@ -0,0 +1,17 @@
events {}
http {
server {
listen 80;
server_name = fdroid.julian-mutter.de;
location = / {
return 302 /fdroid/repo;
}
location /fdroid/repo {
alias /repo/fdroid/repo/;
autoindex on;
}
}
}