Skip to content

Commit

Permalink
Remove merging zed_api.external_hosts with zed.external_hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
Chemaclass committed Apr 28, 2022
1 parent 4900b92 commit 3c79f5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% for store_code, zed_external_host in @('zed.external_hosts')|merge(@('zed_api.external_hosts')) | filter(v => v is not empty) %}
{% for store_code, zed_external_host in @('zed.external_hosts') | filter(v => v is not empty) %}
server {
listen 80;
listen 443 ssl http2;
Expand Down Expand Up @@ -47,7 +47,7 @@ server {
}
{% endfor %}

{% for store_code, zed_api_external_host in @('zed_api.external_hosts') %}
{% for store_code, zed_api_external_host in @('zed_api.external_hosts') | filter(v => v is not empty) %}
server {
listen 80;
listen 443 ssl http2;
Expand Down

0 comments on commit 3c79f5f

Please sign in to comment.