Hello X.,
You can use `skinparam nodesep nnn` as:
@startuml LPO
skinparam linetype ortho
skinparam nodesep 300
rectangle "So" {
component "Connector" as connector {
[1xxxxx/SG]
}
}
rectangle "AFM" {
component "VLT" as VLT {
[xxxxxxxxx] <<1xxxxx>>
}
}
So <-left-> VLT: use HTTPS
'"xxxxxxxxx" <-l-> "1xxxxx/SG": use HTTPS
@enduml
But the result is better if arrow/link is on low level component, as:
@startuml LPO
skinparam linetype ortho
skinparam nodesep 300
rectangle "So" {
component "Connector" as connector {
[1xxxxx/SG]
}
}
rectangle "AFM" {
component "VLT" as VLT {
[xxxxxxxxx] <<1xxxxx>>
}
}
'So <-left-> VLT: use HTTPS
"xxxxxxxxx" <-l-> "1xxxxx/SG": use HTTPS
@enduml
If that can help,
Regards,
Th.