Add note about using gencerts when listening on specific interfaces

This commit is contained in:
Kulpreet Singh 2018-07-18 14:25:34 +02:00 committed by John C. Vernaleo
parent e2c08cc80b
commit 06e5c43499

View file

@ -33,3 +33,11 @@ The following config file would configure btcd to only listen on localhost for b
listen=127.0.0.1:8333
listen=[::1]:8333
```
In addition, if you are starting btcd with TLS and want to make it
available via a hostname, then you will need to generate the TLS
certificates for that host. For example,
```
gencerts --host=myhostname.example.com --directory=/home/me/.btcd/
```