From 5c94c2a1cda43e03d5288633813ddf3b2b447f96 Mon Sep 17 00:00:00 2001 From: Hugo Trentesaux <hugo.trentesaux@lilo.org> Date: Thu, 20 Jun 2024 18:01:37 +0200 Subject: [PATCH] remove /ws from listen address --- resources/debian/env_file | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/debian/env_file b/resources/debian/env_file index ec95f0d5b..e896759f7 100644 --- a/resources/debian/env_file +++ b/resources/debian/env_file @@ -8,7 +8,7 @@ DUNITER_CHAIN_NAME=gdev # Defines the address and port for node communication. # The format is /ip4/[IP address]/tcp/[port]/[protocol]. # If SMITH NODE: `/ip4/0.0.0.0/tcp/<port>` and `/ip6/[::]/tcp/<port>`. Otherwise: `/ip4/0.0.0.0/tcp/<port>/ws` and `/ip6/[::]/tcp/<port>/ws`. -DUNITER_LISTEN_ADDR=/ip4/0.0.0.0/tcp/30333/ws +DUNITER_LISTEN_ADDR=/ip4/0.0.0.0/tcp/30333 # Specify browser origins allowed to access the HTTP & WS RPC servers. # A comma-separated list with no space of origins. -- GitLab