Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove TLS section #705

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -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

Expand Down
Loading