ansible-collection-uffd/roles/uffd/templates/nginx/nginx.conf
Nis Wechselberg 9809ae6e6f
First version of the uffd collection
Signed-off-by: Nis Wechselberg <enbewe@enbewe.de>
2024-06-17 16:38:07 +02:00

13 lines
No EOL
218 B
Nginx Configuration File

server {
listen 80;
server_name _;
location / {
uwsgi_pass uffd:3031;
include uwsgi_params;
}
location /static {
alias /var/www/uffd/static;
}
}