Skip to content
Snippets Groups Projects
Commit c1d2fe94 authored by jurgenhaas's avatar jurgenhaas
Browse files

Also ignore aliases if a multidomain is ignored for varnish

parent 44e82abb
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,11 @@
{% for domain in drupal.domains|default([]) %}
{% if domain.ignore_varnish|default(false) %}
{{domain.domain}}
{% if domain.multidomain|default(false) %}
{% for alias in domain.aliases|default([]) %}
{{alias}}
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment