Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #796 from entendu/patch-2
Browse files Browse the repository at this point in the history
Fixes #795, broken Your Site links on dashboard.
  • Loading branch information
geerlingguy authored Jul 11, 2016
2 parents 85f6021 + dfa8812 commit 20d4f61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion provisioning/templates/dashboard.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@
{%- endfor -%}
{%- elif drupalvm_webserver == 'nginx' -%}
{%- for host in nginx_hosts -%}
{{ printSite(host.server_name, host.root) }}
{%- for hostname in host.server_name.split() -%}
{{ printSite(hostname, host.root) }}
{%- endfor -%}
{%- endfor -%}
{%- endif %}
<tr><td colspan=3><small>*Note: If Ansible isn't installed installed on your host, Drush aliases are only created inside the VM.</small></td></tr>
Expand Down

0 comments on commit 20d4f61

Please sign in to comment.