Skip to content

Add XDC node commands and config #170

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

Merged
merged 14 commits into from
Sep 28, 2023
Binary file added .gitbook/assets/image31-xdc-client-commands.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
* [How to migrate an XDC Node](run-a-node/full-node/how-to-migrate-an-xdc-node.md)
* [RPC](run-a-node/rpc.md)
* [How to Encrypt RPC](run-a-node/how-to-ssl-tls-encryption-for-xdc-rpc.md)
* [Commands and Config Options](run-a-node/node-commands-and-config.md)

## Learn

Expand Down
1 change: 1 addition & 0 deletions run-a-node/how-to-ssl-tls-encryption-for-xdc-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ sudo nginx -t

We will need to set the ownership and permissions of the private key and certificate we created earlier. This makes sure they are secure. We also need to ensure that Nginx can access them when needed. The Nginx process usually runs as _www-data_, so we will add _www-data_ to the group _ssl-cert_ that has access to the credentials:
```
sudo addgroup ssl-cert
sudo chown root:ssl-cert /etc/ssl/certs/cert.pem
sudo chmod 0644 /etc/ssl/certs/cert.pem
sudo chown root:ssl-cert /etc/ssl/private/key.pem
Expand Down
Loading