mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 03:52:25 -05:00
[chore] Update config to remove unnecessary square brackets around ipv6 addresses (#4451)
Tweak example config for `bind-address`, as square brackets around ipv6 addresses was causing issues launching. Closes https://codeberg.org/superseriousbusiness/gotosocial/issues/4450 Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4451 Co-authored-by: tobi <tobi.smethurst@protonmail.com> Co-committed-by: tobi <tobi.smethurst@protonmail.com>
This commit is contained in:
parent
82216281ce
commit
602022701b
2 changed files with 18 additions and 14 deletions
|
|
@ -107,14 +107,16 @@ account-domain: ""
|
||||||
# Default: "https"
|
# Default: "https"
|
||||||
protocol: "https"
|
protocol: "https"
|
||||||
|
|
||||||
# String. Address to bind the GoToSocial server to.
|
# String. Address to bind the GoToSocial HTTP server to.
|
||||||
# This can be an IPv4 address or an IPv6 address (surrounded in square brackets), or a hostname.
|
# This can be an IPv4 address, an IPv6 address, or a hostname.
|
||||||
|
#
|
||||||
# The default value will bind to all interfaces, which makes the server
|
# The default value will bind to all interfaces, which makes the server
|
||||||
# accessible by other machines. For most setups there is no need to change this.
|
# accessible by other machines. For most setups you won't need to change this.
|
||||||
# If you are using GoToSocial in a reverse proxy setup with the proxy running on
|
# However, if you are using GoToSocial in a reverse proxy setup with the proxy
|
||||||
# the same machine, you will want to set this to "localhost" or an equivalent,
|
# running on the same machine, you may want to set this to "localhost" or equivalent,
|
||||||
# so that the proxy can't be bypassed.
|
# so that the proxy definitely can't be bypassed.
|
||||||
# Examples: ["0.0.0.0", "172.128.0.16", "localhost", "[::]", "[2001:db8::fed1]"]
|
#
|
||||||
|
# Examples: ["0.0.0.0", "172.128.0.16", "localhost", "::1", "2001:db8::fed1"]
|
||||||
# Default: "0.0.0.0"
|
# Default: "0.0.0.0"
|
||||||
bind-address: "0.0.0.0"
|
bind-address: "0.0.0.0"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -117,14 +117,16 @@ account-domain: ""
|
||||||
# Default: "https"
|
# Default: "https"
|
||||||
protocol: "https"
|
protocol: "https"
|
||||||
|
|
||||||
# String. Address to bind the GoToSocial server to.
|
# String. Address to bind the GoToSocial HTTP server to.
|
||||||
# This can be an IPv4 address or an IPv6 address (surrounded in square brackets), or a hostname.
|
# This can be an IPv4 address, an IPv6 address, or a hostname.
|
||||||
|
#
|
||||||
# The default value will bind to all interfaces, which makes the server
|
# The default value will bind to all interfaces, which makes the server
|
||||||
# accessible by other machines. For most setups there is no need to change this.
|
# accessible by other machines. For most setups you won't need to change this.
|
||||||
# If you are using GoToSocial in a reverse proxy setup with the proxy running on
|
# However, if you are using GoToSocial in a reverse proxy setup with the proxy
|
||||||
# the same machine, you will want to set this to "localhost" or an equivalent,
|
# running on the same machine, you may want to set this to "localhost" or equivalent,
|
||||||
# so that the proxy can't be bypassed.
|
# so that the proxy definitely can't be bypassed.
|
||||||
# Examples: ["0.0.0.0", "172.128.0.16", "localhost", "[::]", "[2001:db8::fed1]"]
|
#
|
||||||
|
# Examples: ["0.0.0.0", "172.128.0.16", "localhost", "::1", "2001:db8::fed1"]
|
||||||
# Default: "0.0.0.0"
|
# Default: "0.0.0.0"
|
||||||
bind-address: "0.0.0.0"
|
bind-address: "0.0.0.0"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue