diff --git a/docs/integration-guides/websockets.md b/docs/integration-guides/websockets.md index da7d3f736..b7b7e1e2f 100644 --- a/docs/integration-guides/websockets.md +++ b/docs/integration-guides/websockets.md @@ -46,19 +46,8 @@ With the above configuration, localhost clients should connect to `ws://[::1]:70 ### Secure WebSockets -Support for `wss://` is available as of V23.0 by including the `NANO_SECURE_RPC` cmake cache flag set to `ON` when building the node and adding the `config-tls.toml` file with: - -```toml -enable_https=true -enable_wss=true -verbose_logging=true -server_cert_path="/node/server.cert.pem" -server_key_path="/node/server.key.pem" -server_key_passphrase="test" -server_dh_path="/node/dh1024.pem" -``` - -This configuration is related to HTTPS support for RPC, see [here for more details](../running-a-node/configuration-https.md#configuration). +Support for `wss://` is deprecated from V27. +Secure websockets can be achieved by using a reverse proxy. ## Acknowledgement diff --git a/docs/running-a-node/configuration.md b/docs/running-a-node/configuration.md index eb0c02694..62a161698 100644 --- a/docs/running-a-node/configuration.md +++ b/docs/running-a-node/configuration.md @@ -276,7 +276,8 @@ See the [Voting as a Representative guide](voting-as-a-representative.md). See the [Ledger Management guide](ledger-management.md). ### HTTPS support -See the [HTTPS Support guide](configuration-https.md). +Support for TLS is deprecated from V27. +Secure RPC/Websockets can be achieved by using a reverse proxy. ### HTTP callback