diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |