1
0
Fork 0

First version of the uffd collection
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

TODO: The build role should probably be replaced by some intragration as a .build quadlet.

Signed-off-by: Nis Wechselberg <enbewe@enbewe.de>
This commit is contained in:
Nis Wechselberg 2024-06-17 16:32:48 +02:00
parent 688c2456b7
commit 694fd412c9
Signed by: enbewe
GPG key ID: 7B25171F921B9E57
22 changed files with 680 additions and 0 deletions

View file

@ -0,0 +1,13 @@
server {
listen 80;
server_name _;
location / {
uwsgi_pass uffd-app:3031;
include uwsgi_params;
}
location /static {
alias /var/www/uffd/static;
}
}