Skip to content

Commit

Permalink
Merge c4c8772 into 5c65e8a
Browse files Browse the repository at this point in the history
  • Loading branch information
skriss authored Nov 2, 2021
2 parents 5c65e8a + c4c8772 commit adb721c
Show file tree
Hide file tree
Showing 5 changed files with 279 additions and 122 deletions.
6 changes: 2 additions & 4 deletions internal/dag/accessors.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ func (d *DAG) EnsureSecureVirtualHost(hostname string) *SecureVirtualHost {

svh := &SecureVirtualHost{
VirtualHost: VirtualHost{
Name: hostname,
ListenerName: "ingress_https",
Name: hostname,
},
}
d.SecureVirtualHosts[hostname] = svh
Expand All @@ -147,8 +146,7 @@ func (d *DAG) EnsureVirtualHost(hostname string) *VirtualHost {
}

vhost := &VirtualHost{
Name: hostname,
ListenerName: "ingress_http",
Name: hostname,
}
d.VirtualHosts[hostname] = vhost
return vhost
Expand Down
Loading

0 comments on commit adb721c

Please sign in to comment.