Here is my graphviz code:
digraph G {
rankdir="LR"
node [shape=square]
exDNS [label="External DNS"]
inDNS [label="Internal DNS"]
tm [label="Traffic Manager"]
pri [label="App Service\nPrimary Region"]
sec [label="App Service\nSecondary Region"]
Browser -> {inDNS,exDNS} -> Imperva-> tm -> {pri,sec}
Browser -> Imperva -> {pri,sec}
}
It produces the following result:
I would the edge Browser -> Imperva to go straight between the nodes External DNS and Internal DNS.
How can I do it?
I am using the dot renderer.

