summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorLibravatar Mara Sophie Grosch <littlefox@lf-net.org>2021-11-22 17:58:19 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-22 17:58:19 +0100
commita7882fabc7831c7e43e1611b886eb3d3a1daa1b1 (patch)
tree2dbc7648da5f946e4c2137067c1e05c2d42187e2 /cmd
parentFix mentioned accounts visibility bug (#323) (diff)
downloadgotosocial-a7882fabc7831c7e43e1611b886eb3d3a1daa1b1.tar.xz
Use IPv6 doc prefix for docs (#324)
IPv6 has a dedicated prefix for documentation and examples, this commit makes use of it for BindAddress config flag docs and examples.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gotosocial/generalflags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gotosocial/generalflags.go b/cmd/gotosocial/generalflags.go
index 9f321b760..b7e15ab20 100644
--- a/cmd/gotosocial/generalflags.go
+++ b/cmd/gotosocial/generalflags.go
@@ -64,7 +64,7 @@ func generalFlags(flagNames, envNames config.Flags, defaults config.Defaults) []
},
&cli.StringFlag{
Name: flagNames.BindAddress,
- Usage: "Bind address to use for the GoToSocial server (eg., 0.0.0.0, 172.138.0.9, [::], localhost). For ipv6, enclose the address in square brackets, eg [2a02:1807:1430:500:13f5:5efb:3f3a:1191]. Default binds to all interfaces.",
+ Usage: "Bind address to use for the GoToSocial server (eg., 0.0.0.0, 172.138.0.9, [::], localhost). For ipv6, enclose the address in square brackets, eg [2001:db8::fed1]. Default binds to all interfaces.",
Value: defaults.BindAddress,
EnvVars: []string{envNames.BindAddress},
},