Skip to content

Commit

Permalink
Remove TLS section (#705)
Browse files Browse the repository at this point in the history
* TLS section removed because it is no longer supported

* Removed TLS references
  • Loading branch information
RickiNano authored Sep 12, 2024
1 parent ce2d40f commit c273b7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 119 deletions.
15 changes: 2 additions & 13 deletions docs/integration-guides/websockets.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
105 changes: 0 additions & 105 deletions docs/running-a-node/configuration-https.md

This file was deleted.

3 changes: 2 additions & 1 deletion docs/running-a-node/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,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

Expand Down

0 comments on commit c273b7b

Please sign in to comment.