From 081f567c400e67fc92538fd6968fe199ba56ba83 Mon Sep 17 00:00:00 2001 From: fryorcraken <110212804+fryorcraken@users.noreply.github.com> Date: Thu, 24 Jul 2025 17:59:38 +1000 Subject: [PATCH] Fixing WebSocket SSL error: error:0A000086:SSL (#166) --- run_node.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_node.sh b/run_node.sh index 2a776b5..9048e1f 100755 --- a/run_node.sh +++ b/run_node.sh @@ -76,7 +76,7 @@ if [ -n "${DOMAIN}" ]; then WS_SUPPORT="--websocket-support=true" WSS_SUPPORT="--websocket-secure-support=true" WSS_KEY="--websocket-secure-key-path=${LETSENCRYPT_PATH}/privkey.pem" - WSS_CERT="--websocket-secure-cert-path=${LETSENCRYPT_PATH}/cert.pem" + WSS_CERT="--websocket-secure-cert-path=${LETSENCRYPT_PATH}/fullchain.pem" DNS4_DOMAIN="--dns4-domain-name=${DOMAIN}" DNS_WSS_CMD="${WS_SUPPORT} ${WSS_SUPPORT} ${WSS_CERT} ${WSS_KEY} ${DNS4_DOMAIN}"