Use certbot certonly

letsencrypt only work if a webserver is installed.
We can assume if someone installed a webserver, they know what they are doing.

Someone just using the docker-compose needs certbot
This commit is contained in:
fryorcraken.eth 2023-11-29 10:37:47 +11:00
parent 590b7d857a
commit 7c0508120a
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -151,7 +151,7 @@ Consider a `nwaku` node that enabled Secure WebSocket (encrypted) using its key
You can use [Let's Encrypt](https://letsencrypt.org/) or [Certbot](https://certbot.eff.org/) to generate a valid certificate for your `nwaku` node:
```shell
sudo letsencrypt -d <your.domain.name>
sudo certbot certonly -d <your.domain.name>
```
:::
@ -255,4 +255,4 @@ When using a reverse proxy server for SSL/TLS encryption, you only want to annou
:::info
The `ext-multiaddr-only` option takes precedence over the `nat` and `dns4-domain-name` options, using the values provided by the `ext-multiaddr` option instead.
:::
:::