Files
ansible/roles/nginx/templates/vhosts/web.garage.mateu.be.conf.j2
2024-11-04 17:48:43 +01:00

15 lines
361 B
Django/Jinja

server {
{% include './templates/header.conf.j2' %}
location / {
proxy_pass http://web_backend_{{ item.host.split('.')|join('_') }};
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
}
}
upstream web_backend_{{ item.host.split('.')|join('_') }} {
# If you have a garage instance locally.
server [::1]:3902;
}