13 lines
441 B
YAML
13 lines
441 B
YAML
---
|
|
- name: Reverse proxy for {{ service_name }}
|
|
ansible.builtin.import_role:
|
|
name: uumas.general.vhost
|
|
vars:
|
|
vhost_type: reverse_proxy
|
|
vhost_id: "{{ service_name }}"
|
|
vhost_domains: "{{ service_domains }}"
|
|
vhost_proxy_target_netproto: unix
|
|
vhost_proxy_target_socket: "/run/{{ service_name }}-socat.sock"
|
|
vhost_proxy_headers: "{{ _service_proxy_headers }}"
|
|
vhost_locations: "{{ service_vhost_locations }}"
|