From 865328f02d146bef7766cba8be1c514e1e2179aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Wed, 30 Oct 2024 22:20:54 +0100 Subject: [PATCH] config.md: Fix double-[ in IPv6 address --- ref/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref/config.md b/ref/config.md index 9c6adac..982f94b 100644 --- a/ref/config.md +++ b/ref/config.md @@ -118,7 +118,7 @@ should start with a `[[binds]]` line and specify one of the following: * `ipv4`: an IPv4 socket address. `0.0.0.0:8080` would allow connections from outside the machine; `127.0.0.1:8080` would allow connections only from the local host. * `ipv6`: an IPv6 socket address. `[::0]:8080` would allow connections from outside the machine; - `[[::1]:8080` would allow connections from only the local host. + `[::1]:8080` would allow connections from only the local host. * `unix`: a path in the local filesystem where a UNIX-domain socket can be created. Permissions on the enclosing directories control which users are allowed to connect to it. Web browsers typically don't support directly connecting to UNIX domain sockets, but other tools do, e.g.: