summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 3d4eb28..ec25d31 100644
--- a/readme.md
+++ b/readme.md
@@ -17,7 +17,8 @@ configuration file is written in TOML and could look like this:
```toml
# Both the [http] and [https] sections are optional
[http]
-bind = "127.0.0.1:8080"
+# the value for 'bind' can either be a string or a list of strings
+bind = [ "127.0.0.1:8080", "[::1]:8080" ]
[https]
bind = "127.0.0.1:8443"