fix(docs/configuration): hosthostname (#4681)

The attribute `hostname` is incorrectly documented as `host`. Updated all occurrences of attribute `host` to `hostname`.
This commit is contained in:
Bill Gertz
2019-11-26 14:38:33 +01:00
committed by Julien Fontanet
parent 7b47e40244
commit b313eb14ee

View File

@@ -22,7 +22,7 @@ group = 'nogroup'
By default, XO-server listens on all addresses (0.0.0.0) and runs on port 80. If you need to, you can change this in the `# Basic HTTP` section:
```toml
host = '0.0.0.0'
hostname = '0.0.0.0'
port = 80
```
@@ -31,7 +31,7 @@ port = 80
XO-server can also run in HTTPS (you can run HTTP and HTTPS at the same time) - just modify what's needed in the `# Basic HTTPS` section, this time with the certificates/keys you need and their path:
```toml
host = '0.0.0.0'
hostname = '0.0.0.0'
port = 443
certificate = './certificate.pem'
key = './key.pem'