Expose the built packages from the poudriere host.

This commit is contained in:
Tom Alexander 2023-05-30 13:36:00 -04:00
parent 9a2375b28d
commit 67da2cc7c9
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 7 additions and 2 deletions

View File

@ -20,15 +20,20 @@ http {
listen 8080 default;
listen [::]:8080;
server_name freebsdpkg.fizz.buzz;
location / {
root /usr/local/share/poudriere/html;
index index.html index.htm;
}
location /data {
alias /usr/local/poudriere/data/logs/bulk;
autoindex on;
}
location /repo {
alias /usr/local/poudriere/data/packages;
autoindex on;
}
}
}