64b2588dd2
This is not ideal, since devenv is more for creating development environments, but it works
14 lines
221 B
Plaintext
14 lines
221 B
Plaintext
server {
|
|
listen 8080;
|
|
server_name = fdroid.julian-mutter.de;
|
|
|
|
location = / {
|
|
return 302 /fdroid/repo;
|
|
}
|
|
|
|
location /fdroid/repo {
|
|
alias /repo/fdroid/repo/;
|
|
autoindex on;
|
|
}
|
|
}
|