21 lines
759 B
YAML
21 lines
759 B
YAML
---
|
|
|
|
- block:
|
|
- name: Split legacy proxy_target to protocol, host and port
|
|
set_fact:
|
|
proxy_target_split_protocol: "{{ proxy_target.split('://') }}"
|
|
proxy_target_split_host: "{{ (proxy_target_split_protocol | last).split(':') }}"
|
|
proxy_target_host: "{{ proxy_target_split_host[0] }}"
|
|
proxy_target_port: "{{ proxy_target_split_host[1] }}"
|
|
|
|
- name: Set proxy_target_protocol based on proxy_target
|
|
set_fact:
|
|
proxy_target_protocol: "{{ proxy_target_split_protocol[0] }}"
|
|
when: proxy_target_split_protocol | length == 2
|
|
|
|
when: proxy_target is defined and proxy_target_port is not defined
|
|
|
|
- name: Setup {{ vhost_id }} reverse proxy
|
|
include_tasks: "{{ reverse_proxy_type }}.yml"
|
|
when: reverse_proxy_type != 'none'
|