From 3381cfe7ad3d6b781d88d28642e13b0cf94a1684 Mon Sep 17 00:00:00 2001 From: pablomendezroyo Date: Thu, 26 Feb 2026 09:17:22 +0100 Subject: [PATCH] Add localhost as an additional connection target in client config --- bin/ovpn_getclient | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/ovpn_getclient b/bin/ovpn_getclient index 85f0594b..6f286f8e 100755 --- a/bin/ovpn_getclient +++ b/bin/ovpn_getclient @@ -39,6 +39,9 @@ remote-cert-tls server remote $OVPN_HOSTNAME $OVPN_PORT $OVPN_PROTO" + # Always include localhost as an additional connection target + echo "remote localhost $OVPN_PORT $OVPN_PROTO" + if [ -n "$DAPPNODE_INTERNAL_IP" ]; then echo "remote $DAPPNODE_INTERNAL_IP $OVPN_PORT $OVPN_PROTO" fi