From 7b29282ab9ed3c2591472559332d873b493987aa Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 24 Mar 2019 16:05:24 -0700 Subject: [PATCH] README: Update setup instructions to allow '*' in net listen cmd. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0a78f265..7f8e20750 100644 --- a/README.md +++ b/README.md @@ -181,10 +181,10 @@ this is your origin and mxid `@user:host.tld` hostpart. If your DNS uses 3. Create a general listener socket by entering the following command: ``` - net listen matrix 0.0.0.0 8448 privkey.pem cert.pem chain.pem + net listen matrix * 8448 privkey.pem cert.pem chain.pem ``` - `matrix` is your name for this listener; you can use any name. - - `0.0.0.0` and `8448` is the local address and port to bind. + - `*` and `8448` is the local address and port to bind. - `privkey.pem` and `cert.pem` and `chain.pem` are paths (ideally absolute paths) to PEM-format files for the listener's TLS.