Move PKGBUILD to pkgbuild dir

This commit is contained in:
Edgar P. Burkhart 2023-04-22 13:27:58 +02:00
parent ee25223e73
commit 06c8cab4bf
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
5 changed files with 0 additions and 0 deletions

20
pkgbuild/nummi.nginx Normal file
View file

@ -0,0 +1,20 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name nummi.edgarpierre.fr;
location / {
include conf/50-proxy.conf;
proxy_pass http://unix:/run/nummi/nummi.socket;
}
location /static {
alias /srv/nummi;
}
location /internal/media {
internal;
alias /var/lib/nummi;
}
}