forked from stove/dataset
13 lines
528 B
YAML
13 lines
528 B
YAML
address: {{ general.network.interface_0.ip_eth0 }}
|
|
urls:
|
|
{% for domain in nginx.remotes %}
|
|
{% set suffix = domain|normalize_family %}
|
|
{% for revprox in nginx['reverse_proxy_for_' + suffix]['reverse_proxy_' + suffix]['revprox_domainnames_' + suffix] %}
|
|
{% for location in revprox['revprox_location_' + suffix] %}
|
|
{% if not revprox['revprox_is_websocket_' + suffix][loop.index - 1] %}
|
|
- {{ revprox }}{{ location }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
ca_certificate: ../etc/pki/ca-trust/source/anchors/External.crt
|