Update README.md
This commit is contained in:
parent
eeee7f779c
commit
ae036a771c
12
README.md
12
README.md
|
@ -40,7 +40,7 @@ letsencrypt certonly \
|
||||||
--agree-tos --email john.doe@example.com \
|
--agree-tos --email john.doe@example.com \
|
||||||
--standalone \
|
--standalone \
|
||||||
--domains example.com,www.example.com \
|
--domains example.com,www.example.com \
|
||||||
--server https://acme-staging.api.letsencrypt.org/directory
|
--server https://acme-staging.api.letsencrypt.org/directory \
|
||||||
```
|
```
|
||||||
|
|
||||||
### WebRoot
|
### WebRoot
|
||||||
|
@ -53,6 +53,16 @@ letsencrypt certonly \
|
||||||
--server https://acme-staging.api.letsencrypt.org/directory
|
--server https://acme-staging.api.letsencrypt.org/directory
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Run without Root
|
||||||
|
|
||||||
|
If you'd like to allow node.js to use privileged ports `80` and `443`
|
||||||
|
(and everything under 1024 really) without being run as `root` or `sudo`,
|
||||||
|
you can use `setcap` to do so. (it may need to be run any time you reinstall node as well)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo setcap cap_net_bind_service=+ep /usr/local/bin/node
|
||||||
|
```
|
||||||
|
|
||||||
## Command line Options
|
## Command line Options
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue