From faf7f02313abb192d2fbb7fa52527f7442f720ed Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Thu, 24 Jul 2025 16:37:57 +1000 Subject: [PATCH] Fixing WebSocket SSL error: error:0A000086:SSL The full chain is needed to avoid this error. Tested on my setup (wss://waku.fryorcraken.xyz:8000) --- 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}"